pub struct AddonMetadataPatch {Show 15 fields
pub title: Option<String>,
pub original_title: Option<String>,
pub sort_title: Option<String>,
pub overview: Option<String>,
pub release_date: Option<String>,
pub runtime_minutes: Option<u32>,
pub tagline: Option<String>,
pub genres: Option<Vec<String>>,
pub tags: Option<Vec<String>>,
pub ratings: Option<Vec<AddonMetadataContentRating>>,
pub images: Option<Vec<AddonMetadataImage>>,
pub credits: Option<Vec<AddonMetadataCredit>>,
pub collections: Option<Vec<AddonMetadataCollection>>,
pub studios: Option<Vec<AddonMetadataStudio>>,
pub external_ids: Option<Vec<AddonMetadataExternalId>>,
}Fields§
§title: Option<String>§original_title: Option<String>§sort_title: Option<String>§overview: Option<String>§release_date: Option<String>§runtime_minutes: Option<u32>§tagline: Option<String>§genres: Option<Vec<String>>§ratings: Option<Vec<AddonMetadataContentRating>>§images: Option<Vec<AddonMetadataImage>>§credits: Option<Vec<AddonMetadataCredit>>§collections: Option<Vec<AddonMetadataCollection>>§studios: Option<Vec<AddonMetadataStudio>>§external_ids: Option<Vec<AddonMetadataExternalId>>Trait Implementations§
Source§impl Clone for AddonMetadataPatch
impl Clone for AddonMetadataPatch
Source§fn clone(&self) -> AddonMetadataPatch
fn clone(&self) -> AddonMetadataPatch
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 AddonMetadataPatch
impl Debug for AddonMetadataPatch
Source§impl Default for AddonMetadataPatch
impl Default for AddonMetadataPatch
Source§fn default() -> AddonMetadataPatch
fn default() -> AddonMetadataPatch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddonMetadataPatch
impl<'de> Deserialize<'de> for AddonMetadataPatch
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 AddonMetadataPatch
impl PartialEq for AddonMetadataPatch
Source§fn eq(&self, other: &AddonMetadataPatch) -> bool
fn eq(&self, other: &AddonMetadataPatch) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AddonMetadataPatch
impl Serialize for AddonMetadataPatch
impl Eq for AddonMetadataPatch
impl StructuralPartialEq for AddonMetadataPatch
Auto Trait Implementations§
impl Freeze for AddonMetadataPatch
impl RefUnwindSafe for AddonMetadataPatch
impl Send for AddonMetadataPatch
impl Sync for AddonMetadataPatch
impl Unpin for AddonMetadataPatch
impl UnsafeUnpin for AddonMetadataPatch
impl UnwindSafe for AddonMetadataPatch
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