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