Enum arret_runtime::class_map::FieldType[][src]

#[repr(u8)]
pub enum FieldType {
    Bool,
    Char,
    Float,
    Int,
    InternedSym,
    Boxed,
}

Minimal type information for a class’ field

This is used to annotate values with information to support equality, hashing and garbage collection.

Variants

Bool
Char
Float
Int
InternedSym
Boxed

Implementations

impl FieldType[src]

pub fn from_abi_type(abi_type: &AbiType) -> Self[src]

Trait Implementations

impl Clone for FieldType[src]

impl PartialEq<FieldType> for FieldType[src]

impl Copy for FieldType[src]

impl Eq for FieldType[src]

impl StructuralEq for FieldType[src]

impl StructuralPartialEq for FieldType[src]

Auto Trait Implementations

impl RefUnwindSafe for FieldType

impl Send for FieldType

impl Sync for FieldType

impl Unpin for FieldType

impl UnwindSafe for FieldType

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> PartialEqInHeap for T where
    T: PartialEq<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.