pub enum IndexIdentifier {
Column(Name),
Qualified(IndexQualifier, Name),
}
Variants§
Column(Name)
Qualified(IndexQualifier, Name)
Implementations§
Trait Implementations§
Source§impl Clone for IndexIdentifier
impl Clone for IndexIdentifier
Source§fn clone(&self) -> IndexIdentifier
fn clone(&self) -> IndexIdentifier
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 IndexIdentifier
impl<'a> CustomToTokens<'a> for IndexIdentifier
Source§impl Debug for IndexIdentifier
impl Debug for IndexIdentifier
Source§impl Display for IndexIdentifier
impl Display for IndexIdentifier
Source§impl FromStr for IndexIdentifier
impl FromStr for IndexIdentifier
Source§impl Parse for IndexIdentifier
impl Parse for IndexIdentifier
type Output = IndexIdentifier
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for IndexIdentifier
impl PartialEq for IndexIdentifier
Source§impl ToTokens for IndexIdentifier
impl ToTokens for IndexIdentifier
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 IndexIdentifier
impl StructuralPartialEq for IndexIdentifier
Auto Trait Implementations§
impl Freeze for IndexIdentifier
impl RefUnwindSafe for IndexIdentifier
impl Send for IndexIdentifier
impl Sync for IndexIdentifier
impl Unpin for IndexIdentifier
impl UnwindSafe for IndexIdentifier
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