Struct flatbuffers::SkipSizePrefix
source · 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>
source§impl<T: Verifiable> Verifiable for SkipSizePrefix<T>
impl<T: Verifiable> Verifiable for SkipSizePrefix<T>
source§fn run_verifier(
v: &mut Verifier<'_, '_>,
pos: usize
) -> Result<(), InvalidFlatbuffer>
fn run_verifier( v: &mut Verifier<'_, '_>, pos: usize ) -> Result<(), InvalidFlatbuffer>
Runs the verifier for this type, assuming its at position
pos
in the verifier’s buffer.
Should not need to be called directly.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> 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