Enum scylladb_parse::BindMarker
source · [−]pub enum BindMarker {
Anonymous,
Named(Name),
}Variants
Anonymous
Named(Name)
Trait Implementations
sourceimpl Clone for BindMarker
impl Clone for BindMarker
sourcefn clone(&self) -> BindMarker
fn clone(&self) -> BindMarker
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a> CustomToTokens<'a> for BindMarker
impl<'a> CustomToTokens<'a> for BindMarker
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for BindMarker
impl Debug for BindMarker
sourceimpl Display for BindMarker
impl Display for BindMarker
sourceimpl From<BindMarker> for Term
impl From<BindMarker> for Term
sourcefn from(original: BindMarker) -> Term
fn from(original: BindMarker) -> Term
Converts to this type from the input type.
sourceimpl<T: Into<Name>> From<T> for BindMarker
impl<T: Into<Name>> From<T> for BindMarker
sourceimpl FromStr for BindMarker
impl FromStr for BindMarker
sourceimpl Hash for BindMarker
impl Hash for BindMarker
sourceimpl Ord for BindMarker
impl Ord for BindMarker
sourceimpl Parse for BindMarker
impl Parse for BindMarker
type Output = BindMarker
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<BindMarker> for BindMarker
impl PartialEq<BindMarker> for BindMarker
sourcefn eq(&self, other: &BindMarker) -> bool
fn eq(&self, other: &BindMarker) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &BindMarker) -> bool
fn ne(&self, other: &BindMarker) -> bool
This method tests for !=.
sourceimpl PartialOrd<BindMarker> for BindMarker
impl PartialOrd<BindMarker> for BindMarker
sourcefn partial_cmp(&self, other: &BindMarker) -> Option<Ordering>
fn partial_cmp(&self, other: &BindMarker) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl ToTokens for BindMarker
impl ToTokens for BindMarker
sourcefn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Write self to the given TokenStream. Read more
sourcefn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Convert self directly into a TokenStream object. Read more
sourcefn into_token_stream(self) -> TokenStream
fn into_token_stream(self) -> TokenStream
Convert self directly into a TokenStream object. Read more
sourceimpl TryFrom<BindMarker> for Name
impl TryFrom<BindMarker> for Name
impl Eq for BindMarker
impl StructuralEq for BindMarker
impl StructuralPartialEq for BindMarker
Auto Trait Implementations
impl RefUnwindSafe for BindMarker
impl Send for BindMarker
impl Sync for BindMarker
impl Unpin for BindMarker
impl UnwindSafe for BindMarker
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more