pub struct CustomFormatSpecificationSchema {
pub id: Option<i32>,
pub name: Option<Option<String>>,
pub implementation: Option<Option<String>>,
pub implementation_name: Option<Option<String>>,
pub info_link: Option<Option<String>>,
pub negate: Option<bool>,
pub required: Option<bool>,
pub fields: Option<Option<Vec<Field>>>,
pub presets: Option<Option<Vec<CustomFormatSpecificationSchema>>>,
}
Fields§
§id: Option<i32>
§name: Option<Option<String>>
§implementation: Option<Option<String>>
§implementation_name: Option<Option<String>>
§info_link: Option<Option<String>>
§negate: Option<bool>
§required: Option<bool>
§fields: Option<Option<Vec<Field>>>
§presets: Option<Option<Vec<CustomFormatSpecificationSchema>>>
Implementations§
Trait Implementations§
Source§impl Clone for CustomFormatSpecificationSchema
impl Clone for CustomFormatSpecificationSchema
Source§fn clone(&self) -> CustomFormatSpecificationSchema
fn clone(&self) -> CustomFormatSpecificationSchema
Returns a copy 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 CustomFormatSpecificationSchema
impl<'de> Deserialize<'de> for CustomFormatSpecificationSchema
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 CustomFormatSpecificationSchema
impl PartialEq for CustomFormatSpecificationSchema
Source§fn eq(&self, other: &CustomFormatSpecificationSchema) -> bool
fn eq(&self, other: &CustomFormatSpecificationSchema) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CustomFormatSpecificationSchema
Auto Trait Implementations§
impl Freeze for CustomFormatSpecificationSchema
impl RefUnwindSafe for CustomFormatSpecificationSchema
impl Send for CustomFormatSpecificationSchema
impl Sync for CustomFormatSpecificationSchema
impl Unpin for CustomFormatSpecificationSchema
impl UnwindSafe for CustomFormatSpecificationSchema
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