pub struct CreditCommon {
    pub credit_id: String,
    pub adult: bool,
    pub known_for_department: Option<String>,
    pub original_name: String,
    pub popularity: f64,
}Fields§
§credit_id: String§adult: bool§known_for_department: Option<String>§original_name: String§popularity: f64Trait Implementations§
Source§impl Debug for CreditCommon
 
impl Debug for CreditCommon
Source§impl<'de> Deserialize<'de> for CreditCommon
 
impl<'de> Deserialize<'de> for CreditCommon
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
Auto Trait Implementations§
impl Freeze for CreditCommon
impl RefUnwindSafe for CreditCommon
impl Send for CreditCommon
impl Sync for CreditCommon
impl Unpin for CreditCommon
impl UnwindSafe for CreditCommon
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