pub struct CreateTablePlan {
pub name: String,
pub columns: Vec<ColumnDef>,
pub immutable: bool,
pub state_machine: Option<StateMachineDef>,
pub dag_edge_types: Vec<String>,
pub propagation_rules: Vec<PropagationRule>,
pub retain: Option<RetainOption>,
}Fields§
§name: String§columns: Vec<ColumnDef>§immutable: bool§state_machine: Option<StateMachineDef>§dag_edge_types: Vec<String>§propagation_rules: Vec<PropagationRule>§retain: Option<RetainOption>Trait Implementations§
Source§impl Clone for CreateTablePlan
impl Clone for CreateTablePlan
Source§fn clone(&self) -> CreateTablePlan
fn clone(&self) -> CreateTablePlan
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 moreAuto Trait Implementations§
impl Freeze for CreateTablePlan
impl RefUnwindSafe for CreateTablePlan
impl Send for CreateTablePlan
impl Sync for CreateTablePlan
impl Unpin for CreateTablePlan
impl UnsafeUnpin for CreateTablePlan
impl UnwindSafe for CreateTablePlan
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