pub struct Class {
pub mono_ptr: *mut MonoClass,
pub assembly: Arc<Assembly>,
pub domain: Arc<Domain>,
pub image: Arc<Image>,
}
Fields§
§mono_ptr: *mut MonoClass
§assembly: Arc<Assembly>
§domain: Arc<Domain>
§image: Arc<Image>
Implementations§
Source§impl Class
impl Class
pub fn create_object(&self) -> MonoResult<Object>
pub fn get_name(&self) -> String
pub fn get_method_by_name(&self, name: &'static str) -> MonoResult<ClassMethod>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Class
impl RefUnwindSafe for Class
impl !Send for Class
impl !Sync for Class
impl Unpin for Class
impl UnwindSafe for Class
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