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.