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>
impl<F> EventParamSpec<F>
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: Form + JsonSchema> JsonSchema for EventParamSpec<F>
impl<F: Form + JsonSchema> JsonSchema for EventParamSpec<F>
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl<F: PartialEq + Form> PartialEq for EventParamSpec<F>where
F::String: PartialEq,
impl<F: PartialEq + Form> PartialEq 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 ==
.source§impl<F: Form> Serialize for EventParamSpec<F>
impl<F: Form> Serialize for EventParamSpec<F>
impl<F: Eq + Form> Eq for EventParamSpec<F>where
F::String: Eq,
impl<F: Form> StructuralPartialEq for EventParamSpec<F>
Auto Trait Implementations§
impl<F> Freeze for EventParamSpec<F>
impl<F> RefUnwindSafe for EventParamSpec<F>where
<F as Form>::String: RefUnwindSafe,
<F as Form>::Type: RefUnwindSafe,
impl<F> Send for EventParamSpec<F>
impl<F> Sync for EventParamSpec<F>
impl<F> Unpin for EventParamSpec<F>
impl<F> UnwindSafe for EventParamSpec<F>where
<F as Form>::String: UnwindSafe,
<F as Form>::Type: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more