Struct sqlite3_parser::ast::SelectBody
source · [−]pub struct SelectBody {
pub select: OneSelect,
pub compounds: Option<Vec<CompoundSelect>>,
}Fields
select: OneSelectcompounds: Option<Vec<CompoundSelect>>Trait Implementations
sourceimpl Clone for SelectBody
impl Clone for SelectBody
sourcefn clone(&self) -> SelectBody
fn clone(&self) -> SelectBody
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for SelectBody
impl Debug for SelectBody
sourceimpl PartialEq<SelectBody> for SelectBody
impl PartialEq<SelectBody> for SelectBody
sourcefn eq(&self, other: &SelectBody) -> bool
fn eq(&self, other: &SelectBody) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &SelectBody) -> bool
fn ne(&self, other: &SelectBody) -> bool
This method tests for !=.
sourceimpl ToTokens for SelectBody
impl ToTokens for SelectBody
impl Eq for SelectBody
impl StructuralEq for SelectBody
impl StructuralPartialEq for SelectBody
Auto Trait Implementations
impl RefUnwindSafe for SelectBody
impl Send for SelectBody
impl Sync for SelectBody
impl Unpin for SelectBody
impl UnwindSafe for SelectBody
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more