pub enum Name {
Quoted(String),
Unquoted(String),
}
Variants§
Implementations§
Trait Implementations§
Source§impl From<Name> for StatementOptValue
impl From<Name> for StatementOptValue
Source§fn from(original: Name) -> StatementOptValue
fn from(original: Name) -> StatementOptValue
Converts to this type from the input type.
Source§impl Ord for Name
impl Ord for Name
Source§impl PartialOrd for Name
impl PartialOrd for Name
Source§impl ToTokens for Name
impl ToTokens for Name
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,
Source§impl TryFrom<BindMarker> for Name
impl TryFrom<BindMarker> for Name
impl Eq for Name
impl StructuralPartialEq for Name
Auto Trait Implementations§
impl Freeze for Name
impl RefUnwindSafe for Name
impl Send for Name
impl Sync for Name
impl Unpin for Name
impl UnwindSafe for Name
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