#[non_exhaustive]pub struct TitledMultiSelectEnumSchema {
pub type_: ArrayTypeConst,
pub title: Option<Cow<'static, str>>,
pub description: Option<Cow<'static, str>>,
pub min_items: Option<u64>,
pub max_items: Option<u64>,
pub items: TitledItems,
pub default: Option<Vec<String>>,
}Expand description
Multi-select titled options
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.type_: ArrayTypeConst§title: Option<Cow<'static, str>>§description: Option<Cow<'static, str>>§min_items: Option<u64>§max_items: Option<u64>§items: TitledItems§default: Option<Vec<String>>Implementations§
Source§impl TitledMultiSelectEnumSchema
impl TitledMultiSelectEnumSchema
Sourcepub fn new(items: TitledItems) -> Self
pub fn new(items: TitledItems) -> Self
Create a new TitledMultiSelectEnumSchema.
Sourcepub fn with_title(self, title: impl Into<Cow<'static, str>>) -> Self
pub fn with_title(self, title: impl Into<Cow<'static, str>>) -> Self
Set the title.
Sourcepub fn with_description(self, description: impl Into<Cow<'static, str>>) -> Self
pub fn with_description(self, description: impl Into<Cow<'static, str>>) -> Self
Set the description.
Sourcepub fn with_min_items(self, min_items: u64) -> Self
pub fn with_min_items(self, min_items: u64) -> Self
Set the minimum number of items.
Sourcepub fn with_max_items(self, max_items: u64) -> Self
pub fn with_max_items(self, max_items: u64) -> Self
Set the maximum number of items.
Sourcepub fn with_default(self, default: Vec<String>) -> Self
pub fn with_default(self, default: Vec<String>) -> Self
Set the default values.
Trait Implementations§
Source§impl Clone for TitledMultiSelectEnumSchema
impl Clone for TitledMultiSelectEnumSchema
Source§fn clone(&self) -> TitledMultiSelectEnumSchema
fn clone(&self) -> TitledMultiSelectEnumSchema
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TitledMultiSelectEnumSchema
impl Debug for TitledMultiSelectEnumSchema
Source§impl<'de> Deserialize<'de> for TitledMultiSelectEnumSchema
impl<'de> Deserialize<'de> for TitledMultiSelectEnumSchema
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 JsonSchema for TitledMultiSelectEnumSchema
impl JsonSchema for TitledMultiSelectEnumSchema
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(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for TitledMultiSelectEnumSchema
impl PartialEq for TitledMultiSelectEnumSchema
Source§fn eq(&self, other: &TitledMultiSelectEnumSchema) -> bool
fn eq(&self, other: &TitledMultiSelectEnumSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TitledMultiSelectEnumSchema
Auto Trait Implementations§
impl Freeze for TitledMultiSelectEnumSchema
impl RefUnwindSafe for TitledMultiSelectEnumSchema
impl Send for TitledMultiSelectEnumSchema
impl Sync for TitledMultiSelectEnumSchema
impl Unpin for TitledMultiSelectEnumSchema
impl UnsafeUnpin for TitledMultiSelectEnumSchema
impl UnwindSafe for TitledMultiSelectEnumSchema
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