[][src]Struct ink_metadata::ReturnTypeSpec

pub struct ReturnTypeSpec<F: Form = MetaForm> { /* fields omitted */ }

Describes the return type of a contract message.

Implementations

impl ReturnTypeSpec[src]

pub fn new<T>(ty: T) -> Self where
    T: Into<Option<TypeSpec>>, 
[src]

Creates a new return type specification from the given type or None.

Examples

ReturnTypeSpec::new(None); // no return type;
ReturnTypeSpec::new(TypeSpec::new::<i32>()); // return type of `i32`

impl<F> ReturnTypeSpec<F> where
    F: Form
[src]

pub fn opt_type(&self) -> Option<&TypeSpec<F>>[src]

Returns the optional return type

Trait Implementations

impl<F: Debug + Form> Debug for ReturnTypeSpec<F>[src]

impl<'de, F: Form> Deserialize<'de> for ReturnTypeSpec<F> where
    F::Type: DeserializeOwned,
    F::String: DeserializeOwned
[src]

impl<F: Eq + Form> Eq for ReturnTypeSpec<F>[src]

impl IntoCompact for ReturnTypeSpec[src]

type Output = ReturnTypeSpec<CompactForm>

The compact version of Self.

impl<F: PartialEq + Form> PartialEq<ReturnTypeSpec<F>> for ReturnTypeSpec<F>[src]

impl<F: Form> Serialize for ReturnTypeSpec<F> where
    F::Type: Serialize,
    F::String: Serialize
[src]

impl<F: Form> StructuralEq for ReturnTypeSpec<F>[src]

impl<F: Form> StructuralPartialEq for ReturnTypeSpec<F>[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for ReturnTypeSpec<F> where
    <F as Form>::String: RefUnwindSafe,
    <F as Form>::Type: RefUnwindSafe

impl<F> Send for ReturnTypeSpec<F> where
    <F as Form>::String: Send,
    <F as Form>::Type: Send

impl<F> Sync for ReturnTypeSpec<F> where
    <F as Form>::String: Sync,
    <F as Form>::Type: Sync

impl<F> Unpin for ReturnTypeSpec<F> where
    <F as Form>::String: Unpin,
    <F as Form>::Type: Unpin

impl<F> UnwindSafe for ReturnTypeSpec<F> where
    <F as Form>::String: UnwindSafe,
    <F as Form>::Type: UnwindSafe

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.