pub enum SelectSpecification {
Compound(CompoundSelectStatement),
Simple(SelectStatement),
}
Variants§
Compound(CompoundSelectStatement)
Simple(SelectStatement)
Trait Implementations§
Source§impl Clone for SelectSpecification
impl Clone for SelectSpecification
Source§fn clone(&self) -> SelectSpecification
fn clone(&self) -> SelectSpecification
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 SelectSpecification
impl Debug for SelectSpecification
Source§impl<'de> Deserialize<'de> for SelectSpecification
impl<'de> Deserialize<'de> for SelectSpecification
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 SelectSpecification
impl Display for SelectSpecification
Source§impl Hash for SelectSpecification
impl Hash for SelectSpecification
Source§impl PartialEq for SelectSpecification
impl PartialEq for SelectSpecification
Source§impl Serialize for SelectSpecification
impl Serialize for SelectSpecification
impl Eq for SelectSpecification
impl StructuralPartialEq for SelectSpecification
Auto Trait Implementations§
impl Freeze for SelectSpecification
impl RefUnwindSafe for SelectSpecification
impl Send for SelectSpecification
impl Sync for SelectSpecification
impl Unpin for SelectSpecification
impl UnwindSafe for SelectSpecification
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