pub struct SetPropertyOp<'a> {
pub _tab: Table<'a>,
}Fields§
§_tab: Table<'a>Implementations§
Source§impl<'a> SetPropertyOp<'a>
impl<'a> SetPropertyOp<'a>
pub const VT_INPUT: VOffsetT = 4
pub const VT_TARGET_COL: VOffsetT = 6
pub const VT_KEY: VOffsetT = 8
pub const VT_VALUE_EXPR: VOffsetT = 10
pub const VT_SCHEMA: VOffsetT = 12
pub unsafe fn init_from_table(table: Table<'a>) -> Self
pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: Allocator + 'bldr>( _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr, A>, args: &'args SetPropertyOpArgs<'args>, ) -> WIPOffset<SetPropertyOp<'bldr>>
pub fn input(&self) -> u32
pub fn target_col(&self) -> i32
pub fn key(&self) -> Option<&'a str>
pub fn value_expr(&self) -> Option<Expr<'a>>
pub fn schema(&self) -> Option<Vector<'a, ForwardsUOffset<ColDef<'a>>>>
Trait Implementations§
Source§impl<'a> Clone for SetPropertyOp<'a>
impl<'a> Clone for SetPropertyOp<'a>
Source§fn clone(&self) -> SetPropertyOp<'a>
fn clone(&self) -> SetPropertyOp<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SetPropertyOp<'_>
impl Debug for SetPropertyOp<'_>
Source§impl<'a> Follow<'a> for SetPropertyOp<'a>
impl<'a> Follow<'a> for SetPropertyOp<'a>
Source§impl<'a> PartialEq for SetPropertyOp<'a>
impl<'a> PartialEq for SetPropertyOp<'a>
Source§impl Verifiable for SetPropertyOp<'_>
impl Verifiable for SetPropertyOp<'_>
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 SetPropertyOp<'a>
impl<'a> StructuralPartialEq for SetPropertyOp<'a>
Auto Trait Implementations§
impl<'a> Freeze for SetPropertyOp<'a>
impl<'a> RefUnwindSafe for SetPropertyOp<'a>
impl<'a> Send for SetPropertyOp<'a>
impl<'a> Sync for SetPropertyOp<'a>
impl<'a> Unpin for SetPropertyOp<'a>
impl<'a> UnsafeUnpin for SetPropertyOp<'a>
impl<'a> UnwindSafe for SetPropertyOp<'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