pub struct AlternativeTitle {
pub id: Option<i32>,
pub source_type: Option<SourceType>,
pub movie_metadata_id: Option<i32>,
pub title: Option<Option<String>>,
pub clean_title: Option<Option<String>>,
}
Fields§
§id: Option<i32>
§source_type: Option<SourceType>
§movie_metadata_id: Option<i32>
§title: Option<Option<String>>
§clean_title: Option<Option<String>>
Implementations§
Source§impl AlternativeTitle
impl AlternativeTitle
pub fn new() -> AlternativeTitle
Trait Implementations§
Source§impl Clone for AlternativeTitle
impl Clone for AlternativeTitle
Source§fn clone(&self) -> AlternativeTitle
fn clone(&self) -> AlternativeTitle
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 Debug for AlternativeTitle
impl Debug for AlternativeTitle
Source§impl<'de> Deserialize<'de> for AlternativeTitle
impl<'de> Deserialize<'de> for AlternativeTitle
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 AlternativeTitle
impl PartialEq for AlternativeTitle
Source§impl Serialize for AlternativeTitle
impl Serialize for AlternativeTitle
impl StructuralPartialEq for AlternativeTitle
Auto Trait Implementations§
impl Freeze for AlternativeTitle
impl RefUnwindSafe for AlternativeTitle
impl Send for AlternativeTitle
impl Sync for AlternativeTitle
impl Unpin for AlternativeTitle
impl UnwindSafe for AlternativeTitle
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