Trait flatbuffers::TableObject [] [src]

pub trait TableObject: From<Table> {
    fn is_struct() -> bool;
    fn inline_size() -> usize;
}

A trait for Structs and Tables to implement.

Required Methods

Table Objects require indirection. Structs do not.

The size of the object in the vector.

Implementors