pub struct Union<'a> {
pub _tab: Table<'a>,
}
Expand description
A union is a complex type with children in Field
By default ids in the type vector refer to the offsets in the children
optionally typeIds provides an indirection between the child offset and the type id
for each child typeIds[offset]
is the id used in the type vector
Fields§
§_tab: Table<'a>
Implementations§
Source§impl<'a> Union<'a>
impl<'a> Union<'a>
pub const VT_MODE: VOffsetT = 4u16
pub const VT_TYPEIDS: VOffsetT = 6u16
pub unsafe fn init_from_table(table: Table<'a>) -> Self
pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>( _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>, args: &'args UnionArgs<'args>, ) -> WIPOffset<Union<'bldr>>
pub fn mode(&self) -> UnionMode
pub fn typeIds(&self) -> Option<Vector<'a, i32>>
Trait Implementations§
Source§impl Verifiable for Union<'_>
impl Verifiable for Union<'_>
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<'a> Copy for Union<'a>
impl<'a> StructuralPartialEq for Union<'a>
Auto Trait Implementations§
impl<'a> Freeze for Union<'a>
impl<'a> RefUnwindSafe for Union<'a>
impl<'a> Send for Union<'a>
impl<'a> Sync for Union<'a>
impl<'a> Unpin for Union<'a>
impl<'a> UnwindSafe for Union<'a>
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