pub struct CompiledInnerInstructionsBuilder<'a: 'b, 'b> { /* private fields */ }Implementations§
Source§impl<'a: 'b, 'b> CompiledInnerInstructionsBuilder<'a, 'b>
impl<'a: 'b, 'b> CompiledInnerInstructionsBuilder<'a, 'b>
pub fn add_index(&mut self, index: u8)
pub fn add_instructions( &mut self, instructions: WIPOffset<Vector<'b, ForwardsUOffset<CompiledInnerInstruction<'b>>>>, )
pub fn new( _fbb: &'b mut FlatBufferBuilder<'a>, ) -> CompiledInnerInstructionsBuilder<'a, 'b>
pub fn finish(self) -> WIPOffset<CompiledInnerInstructions<'a>>
Auto Trait Implementations§
impl<'a, 'b> Freeze for CompiledInnerInstructionsBuilder<'a, 'b>
impl<'a, 'b> RefUnwindSafe for CompiledInnerInstructionsBuilder<'a, 'b>
impl<'a, 'b> Send for CompiledInnerInstructionsBuilder<'a, 'b>
impl<'a, 'b> Sync for CompiledInnerInstructionsBuilder<'a, 'b>
impl<'a, 'b> Unpin for CompiledInnerInstructionsBuilder<'a, 'b>
impl<'a, 'b> !UnwindSafe for CompiledInnerInstructionsBuilder<'a, 'b>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more