pub struct TableToCreate {
pub fragment: Option<OwnedFragment>,
pub table: String,
pub namespace: NamespaceId,
pub columns: Vec<TableColumnToCreate>,
pub retention_policy: Option<RetentionPolicy>,
}Fields§
§fragment: Option<OwnedFragment>§table: String§namespace: NamespaceId§columns: Vec<TableColumnToCreate>§retention_policy: Option<RetentionPolicy>Trait Implementations§
Source§impl Clone for TableToCreate
impl Clone for TableToCreate
Source§fn clone(&self) -> TableToCreate
fn clone(&self) -> TableToCreate
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 TableToCreate
impl RefUnwindSafe for TableToCreate
impl Send for TableToCreate
impl Sync for TableToCreate
impl Unpin for TableToCreate
impl UnwindSafe for TableToCreate
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