[][src]Struct ink_metadata::MessageParamSpec

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

Describes a pair of parameter name and type.

Implementations

impl MessageParamSpec[src]

pub fn new(name: &'static str) -> MessageParamSpecBuilder[src]

Constructs a new message parameter specification via builder.

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

pub fn name(&self) -> &F::String[src]

Returns the name of the parameter.

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

Returns the type of the parameter.

Trait Implementations

impl<F: Debug + Form> Debug for MessageParamSpec<F> where
    F::String: Debug
[src]

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

impl<F: Eq + Form> Eq for MessageParamSpec<F> where
    F::String: Eq
[src]

impl IntoCompact for MessageParamSpec[src]

type Output = MessageParamSpec<CompactForm>

The compact version of Self.

impl<F: PartialEq + Form> PartialEq<MessageParamSpec<F>> for MessageParamSpec<F> where
    F::String: PartialEq
[src]

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

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

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

Auto Trait Implementations

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

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

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

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

impl<F> UnwindSafe for MessageParamSpec<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.