Struct flatbuffers::WIPOffset[][src]

pub struct WIPOffset<T>(_, _);

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.

Methods

impl<'a, T: 'a> WIPOffset<T>
[src]

Create a new WIPOffset.

Return a wrapped value that brings its meaning as a union WIPOffset into the type system.

Get the underlying value.

Trait Implementations

impl<T: Debug> Debug for WIPOffset<T>
[src]

Formats the value using the given formatter. Read more

impl<T> Copy for WIPOffset<T>
[src]

impl<T> Clone for WIPOffset<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T> PartialEq for WIPOffset<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T> Deref for WIPOffset<T>
[src]

The resulting type after dereferencing.

Dereferences the value.

impl<T> Push for WIPOffset<T>
[src]

Auto Trait Implementations

impl<T> Send for WIPOffset<T> where
    T: Send

impl<T> Sync for WIPOffset<T> where
    T: Sync