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>
impl<'de, F: Form> Deserialize<'de> for EventParamSpec<F>
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
Source§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
Source§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: Form> Serialize for EventParamSpec<F>
impl<F: Form> Serialize for EventParamSpec<F>
impl<F: Eq + Form> Eq for EventParamSpec<F>
impl<F: Form> StructuralPartialEq for EventParamSpec<F>
Auto Trait Implementations§
impl<F> Freeze for EventParamSpec<F>
impl<F> RefUnwindSafe for EventParamSpec<F>
impl<F> Send for EventParamSpec<F>
impl<F> Sync for EventParamSpec<F>
impl<F> Unpin for EventParamSpec<F>
impl<F> UnwindSafe for EventParamSpec<F>
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