Struct sqlite3_parser::ast::FromClause
source · pub struct FromClause {
pub select: Option<Box<SelectTable>>,
pub joins: Option<Vec<JoinedSelectTable>>,
/* private fields */
}Fields§
§select: Option<Box<SelectTable>>§joins: Option<Vec<JoinedSelectTable>>Trait Implementations§
source§impl Clone for FromClause
impl Clone for FromClause
source§fn clone(&self) -> FromClause
fn clone(&self) -> FromClause
Returns a copy 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 moresource§impl Debug for FromClause
impl Debug for FromClause
source§impl PartialEq<FromClause> for FromClause
impl PartialEq<FromClause> for FromClause
source§fn eq(&self, other: &FromClause) -> bool
fn eq(&self, other: &FromClause) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl ToTokens for FromClause
impl ToTokens for FromClause
impl Eq for FromClause
impl StructuralEq for FromClause
impl StructuralPartialEq for FromClause
Auto Trait Implementations§
impl RefUnwindSafe for FromClause
impl Send for FromClause
impl Sync for FromClause
impl Unpin for FromClause
impl UnwindSafe for FromClause
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.