pub struct ParsedCreateTable {
pub table_name: String,
pub columns: Vec<ParsedColumn>,
pub primary_key: Vec<String>,
}Expand description
Parsed CREATE TABLE statement.
Fields§
§table_name: String§columns: Vec<ParsedColumn>§primary_key: Vec<String>Trait Implementations§
Source§impl Clone for ParsedCreateTable
impl Clone for ParsedCreateTable
Source§fn clone(&self) -> ParsedCreateTable
fn clone(&self) -> ParsedCreateTable
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 ParsedCreateTable
impl RefUnwindSafe for ParsedCreateTable
impl Send for ParsedCreateTable
impl Sync for ParsedCreateTable
impl Unpin for ParsedCreateTable
impl UnwindSafe for ParsedCreateTable
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