Struct radarr_api_rs::models::custom_format_specification_schema::CustomFormatSpecificationSchema
source · 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
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CustomFormatSpecificationSchema
Auto Trait Implementations§
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