pub struct WIPOffset<T>(/* private fields */);
Expand description
WIPOffset contains an UOffsetT with a special meaning: it is the location of data relative to the end of an in-progress FlatBuffer. The FlatBufferBuilder uses this to track the location of objects in an absolute way. The impl of Push converts a WIPOffset into a ForwardsUOffset.
Implementations§
Trait Implementations§
impl<T> Copy for WIPOffset<T>
impl<T> Eq for WIPOffset<T>
Auto Trait Implementations§
impl<T> Freeze for WIPOffset<T>
impl<T> RefUnwindSafe for WIPOffset<T>where
T: RefUnwindSafe,
impl<T> Send for WIPOffset<T>where
T: Send,
impl<T> Sync for WIPOffset<T>where
T: Sync,
impl<T> Unpin for WIPOffset<T>where
T: Unpin,
impl<T> UnwindSafe for WIPOffset<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