Struct ink_metadata::EventParamSpec
source · pub struct EventParamSpec<F: Form = MetaForm> { /* private fields */ }
Expand description
Describes a pair of parameter label and type.
Implementations§
source§impl<F> EventParamSpec<F>where
F: Form,
TypeSpec<F>: Default,
impl<F> EventParamSpec<F>where
F: Form,
TypeSpec<F>: Default,
sourcepub fn new(label: F::String) -> EventParamSpecBuilder<F>
pub fn new(label: F::String) -> EventParamSpecBuilder<F>
Creates a new event parameter specification builder.
Trait Implementations§
source§impl<'de, F: Form> Deserialize<'de> for EventParamSpec<F>where
F::Type: DeserializeOwned,
F::String: DeserializeOwned,
impl<'de, F: Form> Deserialize<'de> for EventParamSpec<F>where
F::Type: DeserializeOwned,
F::String: DeserializeOwned,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl IntoPortable for EventParamSpec
impl IntoPortable for EventParamSpec
§type Output = EventParamSpec<PortableForm>
type Output = EventParamSpec<PortableForm>
The portable version of
Self
.source§fn into_portable(self, registry: &mut Registry) -> Self::Output
fn into_portable(self, registry: &mut Registry) -> Self::Output
Convert
self
to the portable form by using the registry for caching.source§impl<F: PartialEq + Form> PartialEq<EventParamSpec<F>> for EventParamSpec<F>where
F::String: PartialEq,
impl<F: PartialEq + Form> PartialEq<EventParamSpec<F>> for EventParamSpec<F>where
F::String: PartialEq,
source§fn eq(&self, other: &EventParamSpec<F>) -> bool
fn eq(&self, other: &EventParamSpec<F>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.