pub struct PersonShort {
pub id: u64,
pub credit_id: Option<String>,
pub name: String,
pub gender: Option<u64>,
pub profile_path: Option<String>,
}Fields§
§id: u64§credit_id: Option<String>§name: String§gender: Option<u64>§profile_path: Option<String>Trait Implementations§
Source§impl Clone for PersonShort
impl Clone for PersonShort
Source§fn clone(&self) -> PersonShort
fn clone(&self) -> PersonShort
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 PersonShort
impl Debug for PersonShort
Source§impl<'de> Deserialize<'de> for PersonShort
impl<'de> Deserialize<'de> for PersonShort
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 PersonShort
impl PartialEq for PersonShort
Source§impl Serialize for PersonShort
impl Serialize for PersonShort
impl StructuralPartialEq for PersonShort
Auto Trait Implementations§
impl Freeze for PersonShort
impl RefUnwindSafe for PersonShort
impl Send for PersonShort
impl Sync for PersonShort
impl Unpin for PersonShort
impl UnwindSafe for PersonShort
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