Struct flatbuffers::ForwardsUOffset
source · pub struct ForwardsUOffset<T>(/* private fields */);
Expand description
ForwardsUOffset is used by Follow to traverse a FlatBuffer: the pointer is incremented by the value contained in this type.
Implementations§
Trait Implementations§
source§impl<T> Clone for ForwardsUOffset<T>
impl<T> Clone for ForwardsUOffset<T>
source§impl<T: Debug> Debug for ForwardsUOffset<T>
impl<T: Debug> Debug for ForwardsUOffset<T>
source§impl<'a, T: Follow<'a>> Follow<'a> for ForwardsUOffset<T>
impl<'a, T: Follow<'a>> Follow<'a> for ForwardsUOffset<T>
source§impl<T> Push for ForwardsUOffset<T>
impl<T> Push for ForwardsUOffset<T>
source§impl<T: Verifiable> Verifiable for ForwardsUOffset<T>
impl<T: Verifiable> Verifiable for ForwardsUOffset<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.impl<T> Copy for ForwardsUOffset<T>
Auto Trait Implementations§
impl<T> Freeze for ForwardsUOffset<T>
impl<T> RefUnwindSafe for ForwardsUOffset<T>where
T: RefUnwindSafe,
impl<T> Send for ForwardsUOffset<T>where
T: Send,
impl<T> Sync for ForwardsUOffset<T>where
T: Sync,
impl<T> Unpin for ForwardsUOffset<T>where
T: Unpin,
impl<T> UnwindSafe for ForwardsUOffset<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