pub enum FromItem {
Table {
name: String,
alias: Option<String>,
},
GraphTable {
graph_name: String,
match_clause: MatchClause,
columns: Vec<GraphTableColumn>,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FromItem
impl RefUnwindSafe for FromItem
impl Send for FromItem
impl Sync for FromItem
impl Unpin for FromItem
impl UnsafeUnpin for FromItem
impl UnwindSafe for FromItem
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