pub enum SimpleSelection {
Column(Name),
Term(Name, Term),
Field(Name, Name),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SimpleSelection
impl Clone for SimpleSelection
Source§fn clone(&self) -> SimpleSelection
fn clone(&self) -> SimpleSelection
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> CustomToTokens<'a> for SimpleSelection
impl<'a> CustomToTokens<'a> for SimpleSelection
Source§impl Debug for SimpleSelection
impl Debug for SimpleSelection
Source§impl Display for SimpleSelection
impl Display for SimpleSelection
Source§impl FromStr for SimpleSelection
impl FromStr for SimpleSelection
Source§impl Parse for SimpleSelection
impl Parse for SimpleSelection
type Output = SimpleSelection
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for SimpleSelection
impl PartialEq for SimpleSelection
Source§impl ToTokens for SimpleSelection
impl ToTokens for SimpleSelection
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Eq for SimpleSelection
impl StructuralPartialEq for SimpleSelection
Auto Trait Implementations§
impl Freeze for SimpleSelection
impl RefUnwindSafe for SimpleSelection
impl Send for SimpleSelection
impl Sync for SimpleSelection
impl Unpin for SimpleSelection
impl UnwindSafe for SimpleSelection
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