pub struct CompoundSelectStatement {
pub selects: Vec<(Option<CompoundSelectOperator>, SelectStatement)>,
pub order: Option<OrderClause>,
pub limit: Option<LimitClause>,
}
Fields§
§selects: Vec<(Option<CompoundSelectOperator>, SelectStatement)>
§order: Option<OrderClause>
§limit: Option<LimitClause>
Trait Implementations§
Source§impl Clone for CompoundSelectStatement
impl Clone for CompoundSelectStatement
Source§fn clone(&self) -> CompoundSelectStatement
fn clone(&self) -> CompoundSelectStatement
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 CompoundSelectStatement
impl Debug for CompoundSelectStatement
Source§impl<'de> Deserialize<'de> for CompoundSelectStatement
impl<'de> Deserialize<'de> for CompoundSelectStatement
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for CompoundSelectStatement
impl Display for CompoundSelectStatement
Source§impl Hash for CompoundSelectStatement
impl Hash for CompoundSelectStatement
Source§impl PartialEq for CompoundSelectStatement
impl PartialEq for CompoundSelectStatement
Source§impl Serialize for CompoundSelectStatement
impl Serialize for CompoundSelectStatement
impl Eq for CompoundSelectStatement
impl StructuralPartialEq for CompoundSelectStatement
Auto Trait Implementations§
impl Freeze for CompoundSelectStatement
impl RefUnwindSafe for CompoundSelectStatement
impl Send for CompoundSelectStatement
impl Sync for CompoundSelectStatement
impl Unpin for CompoundSelectStatement
impl UnwindSafe for CompoundSelectStatement
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