Struct arret_runtime::callback::EntryPointAbiType[][src]

pub struct EntryPointAbiType {
    pub params: &'static [AbiType],
    pub ret: RetAbiType,
}

Encoding of an entry point’s ABI type

This is used internally by the compiler as a mechanism for reflecting the Rust function type.

Fields

params: &'static [AbiType]

Types of the entry point’s parameters

This is not an abitype::ParamAbiType as captures should be determined by the callback implementation, not the callback’s type.

ret: RetAbiType

Type of the entry point’s return value

Trait Implementations

impl Clone for EntryPointAbiType[src]

impl Debug for EntryPointAbiType[src]

impl Hash for EntryPointAbiType[src]

impl PartialEq<EntryPointAbiType> for EntryPointAbiType[src]

impl Eq for EntryPointAbiType[src]

impl StructuralEq for EntryPointAbiType[src]

impl StructuralPartialEq for EntryPointAbiType[src]

Auto Trait Implementations

impl RefUnwindSafe for EntryPointAbiType

impl Send for EntryPointAbiType

impl Sync for EntryPointAbiType

impl Unpin for EntryPointAbiType

impl UnwindSafe for EntryPointAbiType

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.