Trait flatbuffers::TableObject [] [src]

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

A trait for Structs and Tables to implement.

Required Methods

fn is_struct() -> bool

Table Objects require indirection. Structs do not.

fn inline_size() -> usize

The size of the object in the vector.

Implementors