pub enum ReflectedMethod {
Constructor(Arc<ClassInfo>, ConstructorIndex),
Method(Arc<ClassInfo>, MethodIndex),
}Expand description
Reflection on something callable.
Variants§
Constructor(Arc<ClassInfo>, ConstructorIndex)
Method(Arc<ClassInfo>, MethodIndex)
Implementations§
Trait Implementations§
Source§impl Clone for ReflectedMethod
impl Clone for ReflectedMethod
Source§fn clone(&self) -> ReflectedMethod
fn clone(&self) -> ReflectedMethod
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 moreAuto Trait Implementations§
impl Freeze for ReflectedMethod
impl RefUnwindSafe for ReflectedMethod
impl !Send for ReflectedMethod
impl !Sync for ReflectedMethod
impl Unpin for ReflectedMethod
impl UnwindSafe for ReflectedMethod
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