#[non_exhaustive]pub enum CompiledObject {
Relation(Box<Relation>),
Operations(Box<Operations>),
Assertion(Box<Assertion>),
Declaration(Box<Declaration>),
Notebook(Box<Notebook>),
DataPreparation(Box<DataPreparation>),
}Expand description
The compiled object.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Relation(Box<Relation>)
The database relation created/updated by this action.
Operations(Box<Operations>)
The database operations executed by this action.
Assertion(Box<Assertion>)
The assertion executed by this action.
Declaration(Box<Declaration>)
The declaration declared by this action.
Notebook(Box<Notebook>)
The notebook executed by this action.
DataPreparation(Box<DataPreparation>)
The data preparation executed by this action.
Trait Implementations§
Source§impl Clone for CompiledObject
impl Clone for CompiledObject
Source§fn clone(&self) -> CompiledObject
fn clone(&self) -> CompiledObject
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 CompiledObject
impl Debug for CompiledObject
Source§impl PartialEq for CompiledObject
impl PartialEq for CompiledObject
impl StructuralPartialEq for CompiledObject
Auto Trait Implementations§
impl Freeze for CompiledObject
impl RefUnwindSafe for CompiledObject
impl Send for CompiledObject
impl Sync for CompiledObject
impl Unpin for CompiledObject
impl UnwindSafe for CompiledObject
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