[][src]Struct ink_metadata::EventSpec

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

Describes an event definition.

Implementations

impl EventSpec[src]

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

Creates a new event specification builder.

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

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

Returns the name of the event.

pub fn args(&self) -> &[EventParamSpec<F>][src]

The event arguments.

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

The event documentation.

Trait Implementations

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

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

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

impl IntoCompact for EventSpec[src]

type Output = EventSpec<CompactForm>

The compact version of Self.

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

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

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

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

Auto Trait Implementations

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

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

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

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

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