pub struct SkipSizePrefix<T>(/* private fields */);Expand description
SkipSizePrefix is used by Follow to traverse a FlatBuffer: the pointer is incremented by a fixed constant in order to skip over the size prefix value.
Trait Implementations§
Source§impl<'a, T: Follow<'a> + 'a> Follow<'a> for SkipSizePrefix<T>
impl<'a, T: Follow<'a> + 'a> Follow<'a> for SkipSizePrefix<T>
Auto Trait Implementations§
impl<T> Freeze for SkipSizePrefix<T>
impl<T> RefUnwindSafe for SkipSizePrefix<T>where
T: RefUnwindSafe,
impl<T> Send for SkipSizePrefix<T>where
T: Send,
impl<T> Sync for SkipSizePrefix<T>where
T: Sync,
impl<T> Unpin for SkipSizePrefix<T>where
T: Unpin,
impl<T> UnsafeUnpin for SkipSizePrefix<T>
impl<T> UnwindSafe for SkipSizePrefix<T>where
T: UnwindSafe,
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