pub struct GenericSection<'a> { /* private fields */ }
Expand description
Generic data container used for quick scans and iteration over a ROFL segment’s data
Implementations
sourceimpl GenericSection<'_>
impl GenericSection<'_>
sourcepub fn bytes(&self) -> &[u8]ⓘNotable traits for &mut [u8]impl Write for &mut [u8]impl Read for &[u8]
pub fn bytes(&self) -> &[u8]ⓘNotable traits for &mut [u8]impl Write for &mut [u8]impl Read for &[u8]
Get full raw internal section
sourcepub fn time(&self) -> PacketTime
pub fn time(&self) -> PacketTime
Get the section’s time
sourcepub fn params(&self) -> &[u8]ⓘNotable traits for &mut [u8]impl Write for &mut [u8]impl Read for &[u8]
pub fn params(&self) -> &[u8]ⓘNotable traits for &mut [u8]impl Write for &mut [u8]impl Read for &[u8]
The parameters for this packet. The slice may be either 1 or 4 bytes long
sourcepub fn data_type(&self) -> u32
pub fn data_type(&self) -> u32
The type of the data within the packet
Types should be within u16’s space, however a larger type is used for future-proofing
sourcepub fn from_slice(
slice: &[u8],
last_datatype: Option<u32>
) -> Result<GenericSection<'_>, Errors>
pub fn from_slice(
slice: &[u8],
last_datatype: Option<u32>
) -> Result<GenericSection<'_>, Errors>
Create a new GenericDataSegment from a slice.
Providing a slice with the data of multiple GenericDataSegment returns the segment that starts at the first byte of the slice
Trait Implementations
sourceimpl<'a> Clone for GenericSection<'a>
impl<'a> Clone for GenericSection<'a>
sourcefn clone(&self) -> GenericSection<'a>
fn clone(&self) -> GenericSection<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for GenericSection<'a>
impl<'a> Debug for GenericSection<'a>
sourceimpl SectionCore for GenericSection<'_>
impl SectionCore for GenericSection<'_>
Auto Trait Implementations
impl<'a> RefUnwindSafe for GenericSection<'a>
impl<'a> Send for GenericSection<'a>
impl<'a> Sync for GenericSection<'a>
impl<'a> Unpin for GenericSection<'a>
impl<'a> UnwindSafe for GenericSection<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more