pub enum MemberFunction {
Constructor(Constructor),
Method(Method),
}Variants§
Constructor(Constructor)
Method(Method)
Trait Implementations§
Source§impl Clone for MemberFunction
impl Clone for MemberFunction
Source§fn clone(&self) -> MemberFunction
fn clone(&self) -> MemberFunction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MemberFunction
impl Debug for MemberFunction
Source§impl Ord for MemberFunction
impl Ord for MemberFunction
Source§fn cmp(&self, other: &MemberFunction) -> Ordering
fn cmp(&self, other: &MemberFunction) -> 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 PartialEq for MemberFunction
impl PartialEq for MemberFunction
Source§impl PartialOrd for MemberFunction
impl PartialOrd for MemberFunction
impl Eq for MemberFunction
impl StructuralPartialEq for MemberFunction
Auto Trait Implementations§
impl Freeze for MemberFunction
impl RefUnwindSafe for MemberFunction
impl Send for MemberFunction
impl Sync for MemberFunction
impl Unpin for MemberFunction
impl UnwindSafe for MemberFunction
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