pub struct Pointer<'a> {
    pub fixed: &'a PointerFixed,
    pub variant: &'a [u8],
}Fields§
§fixed: &'a PointerFixed§variant: &'a [u8]Trait Implementations§
Source§impl<'a> Parse<'a> for Pointer<'a>
 
impl<'a> Parse<'a> for Pointer<'a>
Source§fn from_parser(p: &mut Parser<'a>) -> Result<Self, ParserError>
 
fn from_parser(p: &mut Parser<'a>) -> Result<Self, ParserError>
Parses an instance of 
Self from a Parser.
This allows the caller to detect which bytes were not consumed at the end of the input.Auto Trait Implementations§
impl<'a> Freeze for Pointer<'a>
impl<'a> RefUnwindSafe for Pointer<'a>
impl<'a> Send for Pointer<'a>
impl<'a> Sync for Pointer<'a>
impl<'a> Unpin for Pointer<'a>
impl<'a> UnwindSafe for Pointer<'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