pub struct MarkerEntry {
pub marker: u8,
pub data: Vec<u8>,
pub offset: usize,
}Expand description
Parsed marker with position information.
Fields§
§marker: u8§data: Vec<u8>Segment data (empty for standalone markers like SOI, EOI, RST).
offset: usizeByte offset of the marker (the 0xFF byte) in the original data.
Auto Trait Implementations§
impl Freeze for MarkerEntry
impl RefUnwindSafe for MarkerEntry
impl Send for MarkerEntry
impl Sync for MarkerEntry
impl Unpin for MarkerEntry
impl UnsafeUnpin for MarkerEntry
impl UnwindSafe for MarkerEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more