pub struct ReflectionType { /* private fields */ }
Expand description

Rust representation of managed object derived form class System.Type

Implementations§

source§

impl ReflectionType

source

pub fn from_class(class: &Class) -> Self

Converts a class to a [MonoReflectionType]

source

pub fn get_type_ptr(&self) -> *mut MonoType

Returns a pointer to unmanaged representation of System.Type

source

pub unsafe fn from_type_ptr(type_ptr: *mut MonoType) -> Option<Self>

Creates an new instance from a pointer to unmanaged representation of System.Type

Safety

The pointer must be either a pointer to valid *mut [MonoType] or null.

source

pub fn from_name(name: &str, img: Image) -> Option<Self>

Gets type with name inside image img

Trait Implementations§

source§

impl Clone for ReflectionType

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl From<Class> for ReflectionType

source§

fn from(class: Class) -> Self

Converts to this type from the input type.
source§

impl InteropClass for ReflectionType

source§

impl ObjectTrait for ReflectionType

source§

fn get_ptr(&self) -> *mut MonoObject

Gets the internal [MonoObject] pointer.
source§

unsafe fn from_ptr_unchecked(type_ptr: *mut MonoObject) -> Self

Creates new instance of Self from *mut [MonoObject]. Pointer is guaranteed to be not null, and of type which can be assigned to managed type represented by Self. Read more
source§

fn cast<Target: ObjectTrait>(&self) -> Option<Target>

source§

unsafe fn from_ptr(obj_ptr: *mut MonoObject) -> Option<Self>

Creates new instance of Self from *mut [MonoObject]. Returns None if either obj_ptr is null OR object obj_ptr points to is of a type which does not derive from the managed type Self represents. Read more
source§

fn hash(&self) -> i32

get hash of this object: This hash is not based on values of objects fields, and differs from result of calling object.GetHash() Read more
source§

fn get_domain(&self) -> Domain

get Domain this object exists in. Read more
source§

fn get_size(&self) -> u32

get size of managed object referenced by self in bytes. Does include builtin hidden data. Read more
source§

fn get_class(&self) -> Class

Returns Class of this object. NOTE: This is function returns the class of the underlying object, not class represented by Self. This means that class returned from get_class may be a class derived from class Self represents. Read more
source§

fn to_mstring(&self) -> Result<Option<MString>, Exception>

Returns result of calling ToString on this Object. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> InteropRecive for Twhere T: ObjectTrait,

§

type SourceType = *mut _MonoObject

Souce type used by MonoRuntime when calling functions exposed by add_internal_call, or getting a value back from a method, that can be converted to a rust type.
source§

fn get_rust_rep(src: <T as InteropRecive>::SourceType) -> T

Function converting Self::SourceType to type implementing InteropRecive trait.
source§

impl<T> InteropSend for Twhere T: ObjectTrait,

§

type TargetType = *mut _MonoObject

Type used by MonoRuntime, that type implementing InteropSend trait should be converted to when returning it to MonoRuntime.
source§

fn get_mono_rep(src: T) -> <T as InteropSend>::TargetType

Function converting type implementing InteropRecive trait to type that should be returned to MonoRuntime.
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.