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
Performs the conversion.
Performs the conversion.
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
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
Mutably borrows from an owned value. Read more