pub enum ILOperation {
Store {
store: StoreOperation,
},
Execute {
execute: Box<ILExpression>,
},
}
Expand description
IL operation within a plan
Variants§
Store
Store a value in a variable slot
Fields
§
store: StoreOperation
Execute
Execute an expression
Fields
§
execute: Box<ILExpression>
Trait Implementations§
Source§impl Clone for ILOperation
impl Clone for ILOperation
Source§fn clone(&self) -> ILOperation
fn clone(&self) -> ILOperation
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 ILOperation
impl Debug for ILOperation
Source§impl<'de> Deserialize<'de> for ILOperation
impl<'de> Deserialize<'de> for ILOperation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ILOperation
impl PartialEq for ILOperation
Source§impl Serialize for ILOperation
impl Serialize for ILOperation
impl StructuralPartialEq for ILOperation
Auto Trait Implementations§
impl Freeze for ILOperation
impl RefUnwindSafe for ILOperation
impl Send for ILOperation
impl Sync for ILOperation
impl Unpin for ILOperation
impl UnwindSafe for ILOperation
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