pub struct CreateNodeTable {
pub name: String,
pub columns: Vec<ColumnDef>,
pub primary_key: String,
pub if_not_exists: bool,
}Fields§
§name: String§columns: Vec<ColumnDef>§primary_key: String§if_not_exists: boolTrait Implementations§
Source§impl Clone for CreateNodeTable
impl Clone for CreateNodeTable
Source§fn clone(&self) -> CreateNodeTable
fn clone(&self) -> CreateNodeTable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateNodeTable
impl Debug for CreateNodeTable
Source§impl PartialEq for CreateNodeTable
impl PartialEq for CreateNodeTable
impl StructuralPartialEq for CreateNodeTable
Auto Trait Implementations§
impl Freeze for CreateNodeTable
impl RefUnwindSafe for CreateNodeTable
impl Send for CreateNodeTable
impl Sync for CreateNodeTable
impl Unpin for CreateNodeTable
impl UnsafeUnpin for CreateNodeTable
impl UnwindSafe for CreateNodeTable
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