pub enum BindMarker {
Anonymous,
Named(Name),
}
Variants§
Trait Implementations§
Source§impl Clone for BindMarker
impl Clone for BindMarker
Source§fn clone(&self) -> BindMarker
fn clone(&self) -> BindMarker
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 BindMarker
impl<'a> CustomToTokens<'a> for BindMarker
Source§impl Debug for BindMarker
impl Debug for BindMarker
Source§impl Display for BindMarker
impl Display for BindMarker
Source§impl From<BindMarker> for Term
impl From<BindMarker> for Term
Source§fn from(original: BindMarker) -> Term
fn from(original: BindMarker) -> Term
Converts to this type from the input type.
Source§impl FromStr for BindMarker
impl FromStr for BindMarker
Source§impl Hash for BindMarker
impl Hash for BindMarker
Source§impl Ord for BindMarker
impl Ord for BindMarker
Source§fn cmp(&self, other: &BindMarker) -> Ordering
fn cmp(&self, other: &BindMarker) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl Parse for BindMarker
impl Parse for BindMarker
type Output = BindMarker
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for BindMarker
impl PartialEq for BindMarker
Source§impl PartialOrd for BindMarker
impl PartialOrd for BindMarker
Source§impl ToTokens for BindMarker
impl ToTokens for BindMarker
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 BindMarker
impl StructuralPartialEq for BindMarker
Auto Trait Implementations§
impl Freeze for BindMarker
impl RefUnwindSafe for BindMarker
impl Send for BindMarker
impl Sync for BindMarker
impl Unpin for BindMarker
impl UnwindSafe for BindMarker
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