Skip to main content

TypeKind

Enum TypeKind 

Source
#[non_exhaustive]
pub enum TypeKind {
Show 30 variants End, Void, Boolean, Char, I1, U1, I2, U2, I4, U4, I8, U8, R4, R8, String, Ptr, ByRef, ValueType, Class, Var, Array, GenericInst, TypedByRef, I, U, FnPtr, Object, SzArray, MVar, Other(u32),
}
Expand description

The type discriminant returned by mono_type_get_type, corresponding to MonoTypeEnum in the Mono source (mono/metadata/metadata.h).

Annotated with #[non_exhaustive] so that adding named variants in the future is not a breaking change. The Other variant covers any discriminant not yet named here.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

End

MONO_TYPE_END (0x00) — internal sentinel.

§

Void

MONO_TYPE_VOID (0x01)

§

Boolean

MONO_TYPE_BOOLEAN (0x02)

§

Char

MONO_TYPE_CHAR (0x03)

§

I1

MONO_TYPE_I1 (0x04) — sbyte

§

U1

MONO_TYPE_U1 (0x05) — byte

§

I2

MONO_TYPE_I2 (0x06) — short

§

U2

MONO_TYPE_U2 (0x07) — ushort

§

I4

MONO_TYPE_I4 (0x08) — int

§

U4

MONO_TYPE_U4 (0x09) — uint

§

I8

MONO_TYPE_I8 (0x0a) — long

§

U8

MONO_TYPE_U8 (0x0b) — ulong

§

R4

MONO_TYPE_R4 (0x0c) — float

§

R8

MONO_TYPE_R8 (0x0d) — double

§

String

MONO_TYPE_STRING (0x0e)

§

Ptr

MONO_TYPE_PTR (0x0f) — unmanaged pointer

§

ByRef

MONO_TYPE_BYREF (0x10) — by-reference parameter

§

ValueType

MONO_TYPE_VALUETYPE (0x11) — value type / struct

§

Class

MONO_TYPE_CLASS (0x12) — reference type

§

Var

MONO_TYPE_VAR (0x13) — generic type parameter (T)

§

Array

MONO_TYPE_ARRAY (0x14) — multi-dimensional array

§

GenericInst

MONO_TYPE_GENERICINST (0x15) — instantiated generic type

§

TypedByRef

MONO_TYPE_TYPEDBYREF (0x16) — TypedReference

§

I

MONO_TYPE_I (0x18) — nint

§

U

MONO_TYPE_U (0x19) — nuint

§

FnPtr

MONO_TYPE_FNPTR (0x1b) — function pointer

§

Object

MONO_TYPE_OBJECT (0x1c) — System.Object

§

SzArray

MONO_TYPE_SZARRAY (0x1d) — single-dimension zero-based array (most C# arrays)

§

MVar

MONO_TYPE_MVAR (0x1e) — generic method parameter (M)

§

Other(u32)

Any discriminant not covered by the named variants above.

Trait Implementations§

Source§

impl Clone for TypeKind

Source§

fn clone(&self) -> TypeKind

Returns a duplicate 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 Debug for TypeKind

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<u32> for TypeKind

Source§

fn from(v: u32) -> Self

Converts to this type from the input type.
Source§

impl Hash for TypeKind

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for TypeKind

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for TypeKind

Source§

impl Eq for TypeKind

Source§

impl StructuralPartialEq for TypeKind

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where 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 T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more