pub enum MethodQualifier {
Virtual(Box<Keyword>),
PureVirtual(Box<(Keyword, Keyword)>),
ClassItemQualifier(Box<ClassItemQualifier>),
}Variants
Virtual(Box<Keyword>)
PureVirtual(Box<(Keyword, Keyword)>)
ClassItemQualifier(Box<ClassItemQualifier>)
Trait Implementations
sourceimpl Clone for MethodQualifier
impl Clone for MethodQualifier
sourcefn clone(&self) -> MethodQualifier
fn clone(&self) -> MethodQualifier
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 Debug for MethodQualifier
impl Debug for MethodQualifier
sourceimpl<'a> From<&'a MethodQualifier> for RefNodes<'a>
impl<'a> From<&'a MethodQualifier> for RefNodes<'a>
sourcefn from(x: &'a MethodQualifier) -> Self
fn from(x: &'a MethodQualifier) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a MethodQualifier> for RefNode<'a>
impl<'a> From<&'a MethodQualifier> for RefNode<'a>
sourcefn from(x: &'a MethodQualifier) -> Self
fn from(x: &'a MethodQualifier) -> Self
Converts to this type from the input type.
sourceimpl From<MethodQualifier> for AnyNode
impl From<MethodQualifier> for AnyNode
sourcefn from(x: MethodQualifier) -> Self
fn from(x: MethodQualifier) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a MethodQualifier
impl<'a> IntoIterator for &'a MethodQualifier
sourceimpl PartialEq<MethodQualifier> for MethodQualifier
impl PartialEq<MethodQualifier> for MethodQualifier
sourcefn eq(&self, other: &MethodQualifier) -> bool
fn eq(&self, other: &MethodQualifier) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &MethodQualifier) -> bool
fn ne(&self, other: &MethodQualifier) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a MethodQualifier> for Locate
impl<'a> TryFrom<&'a MethodQualifier> for Locate
sourceimpl TryFrom<AnyNode> for MethodQualifier
impl TryFrom<AnyNode> for MethodQualifier
sourceimpl TryFrom<MethodQualifier> for Locate
impl TryFrom<MethodQualifier> for Locate
impl StructuralPartialEq for MethodQualifier
Auto Trait Implementations
impl RefUnwindSafe for MethodQualifier
impl Send for MethodQualifier
impl Sync for MethodQualifier
impl Unpin for MethodQualifier
impl UnwindSafe for MethodQualifier
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