pub struct CreateTable {
pub schema_name: String,
pub table: TableSnapshot,
}Expand description
Create a table from its full snapshot.
Fields§
§schema_name: String§table: TableSnapshotImplementations§
Source§impl CreateTable
impl CreateTable
pub fn new(schema_name: impl Into<String>, table: TableSnapshot) -> Self
Trait Implementations§
Source§impl Clone for CreateTable
impl Clone for CreateTable
Source§fn clone(&self) -> CreateTable
fn clone(&self) -> CreateTable
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 CreateTable
impl Debug for CreateTable
Source§impl PartialEq for CreateTable
impl PartialEq for CreateTable
Source§fn eq(&self, other: &CreateTable) -> bool
fn eq(&self, other: &CreateTable) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreateTable
impl StructuralPartialEq for CreateTable
Auto Trait Implementations§
impl Freeze for CreateTable
impl RefUnwindSafe for CreateTable
impl Send for CreateTable
impl Sync for CreateTable
impl Unpin for CreateTable
impl UnsafeUnpin for CreateTable
impl UnwindSafe for CreateTable
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