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