Struct wrapped_mono::MString

source ·
pub struct MString { /* private fields */ }
Expand description

Representaiton of Object of type System.String.

Implementations§

source§

impl MString

source

pub fn new(domain: &Domain, string: &str) -> Self

Creates new managed String in domain with content of string.

source

pub fn is_equal(&self, other: &Self) -> bool

Compares two managed strings. Returns true if their content is equal, not if they are the same object.

source

pub fn hash(&self) -> u32

Creates hash of a String.

Trait Implementations§

source§

impl Clone for MString

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 InteropClass for MString

source§

impl ObjectTrait for MString

source§

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

Creates MString form pointer , or returns None if pointer equal to null.

Safety

ptr must be either a valid [MonoString] pointer or null. Pasing any other value will lead to undefined behaviour.

source§

fn get_ptr(&self) -> *mut MonoObject

Gets the internal [MonoObject] pointer.
source§

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

Returns result of calling ToString on this Object. 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§

impl<O: ObjectTrait> PartialEq<O> for MString

source§

fn eq(&self, other: &O) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ToString for MString

source§

fn to_string(&self) -> String

Converts MString to String

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.