pub struct UntitledSingleSelectEnumSchema {
pub type_: StringTypeConst,
pub enum_values: Vec<String>,
pub title: Option<Cow<'static, str>>,
pub description: Option<Cow<'static, str>>,
pub default: Option<String>,
}Expand description
Schema for single-selection enum without display titles
Fields§
§type_: StringTypeConst§enum_values: Vec<String>§title: Option<Cow<'static, str>>§description: Option<Cow<'static, str>>§default: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for UntitledSingleSelectEnumSchema
impl Clone for UntitledSingleSelectEnumSchema
Source§fn clone(&self) -> UntitledSingleSelectEnumSchema
fn clone(&self) -> UntitledSingleSelectEnumSchema
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for UntitledSingleSelectEnumSchema
impl<'de> Deserialize<'de> for UntitledSingleSelectEnumSchema
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 PartialEq for UntitledSingleSelectEnumSchema
impl PartialEq for UntitledSingleSelectEnumSchema
Source§fn eq(&self, other: &UntitledSingleSelectEnumSchema) -> bool
fn eq(&self, other: &UntitledSingleSelectEnumSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UntitledSingleSelectEnumSchema
Auto Trait Implementations§
impl Freeze for UntitledSingleSelectEnumSchema
impl RefUnwindSafe for UntitledSingleSelectEnumSchema
impl Send for UntitledSingleSelectEnumSchema
impl Sync for UntitledSingleSelectEnumSchema
impl Unpin for UntitledSingleSelectEnumSchema
impl UnwindSafe for UntitledSingleSelectEnumSchema
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