Enum arret_runtime::abitype::BoxedAbiType[][src]

pub enum BoxedAbiType {
    Any,
    UniqueTagged(TypeTag),
    Union(&'static str&'static [TypeTag]),
    Vector(&'static BoxedAbiType),
    List(&'static BoxedAbiType),
    Pair(&'static BoxedAbiType),
    Set(&'static BoxedAbiType),
    Map(&'static BoxedAbiType, &'static BoxedAbiType),
}

Variants

Any
UniqueTagged(TypeTag)
Union(&'static str&'static [TypeTag])
Vector(&'static BoxedAbiType)
List(&'static BoxedAbiType)
Pair(&'static BoxedAbiType)
Set(&'static BoxedAbiType)
Map(&'static BoxedAbiType, &'static BoxedAbiType)

Implementations

impl BoxedAbiType[src]

pub fn into_abi_type(self) -> AbiType[src]

Trait Implementations

impl Clone for BoxedAbiType[src]

impl Debug for BoxedAbiType[src]

impl From<BoxedAbiType> for AbiType[src]

impl From<BoxedAbiType> for ParamAbiType[src]

impl From<BoxedAbiType> for RetAbiType[src]

impl From<TypeTag> for BoxedAbiType[src]

impl Hash for BoxedAbiType[src]

impl PartialEq<BoxedAbiType> for BoxedAbiType[src]

impl Eq for BoxedAbiType[src]

impl StructuralEq for BoxedAbiType[src]

impl StructuralPartialEq for BoxedAbiType[src]

Auto Trait Implementations

impl RefUnwindSafe for BoxedAbiType

impl Send for BoxedAbiType

impl Sync for BoxedAbiType

impl Unpin for BoxedAbiType

impl UnwindSafe for BoxedAbiType

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> HashInHeap for T where
    T: Hash
[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.