pub struct UnknownInfo<'a> {
pub ty: u8,
pub data: &'a [u8],
pub range: Range<usize>,
}Fields§
§ty: u8The identifier for this subsection.
data: &'a [u8]The contents of this subsection.
range: Range<usize>The range of bytes, relative to the start of the original data stream, that the contents of this subsection reside in.
Trait Implementations§
Source§impl<'a> Debug for UnknownInfo<'a>
impl<'a> Debug for UnknownInfo<'a>
Source§impl<'a> Default for UnknownInfo<'a>
impl<'a> Default for UnknownInfo<'a>
Source§fn default() -> UnknownInfo<'a>
fn default() -> UnknownInfo<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for UnknownInfo<'a>
impl<'a> RefUnwindSafe for UnknownInfo<'a>
impl<'a> Send for UnknownInfo<'a>
impl<'a> Sync for UnknownInfo<'a>
impl<'a> Unpin for UnknownInfo<'a>
impl<'a> UnsafeUnpin for UnknownInfo<'a>
impl<'a> UnwindSafe for UnknownInfo<'a>
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