pub struct KeyExecutivesKeyExecutivesInner {
pub name: Option<String>,
pub title: Option<String>,
pub age: Option<i64>,
pub year_born: Option<i64>,
pub pay: Option<i64>,
}Fields§
§name: Option<String>Full name of an executive, including first name, middle name, last name, and suffix
title: Option<String>Refers to job title
age: Option<i64>Current age of an executive if available
year_born: Option<i64>Year of birth of an executive if available
pay: Option<i64>Total salary of an executive if available
Implementations§
Trait Implementations§
Source§impl Clone for KeyExecutivesKeyExecutivesInner
impl Clone for KeyExecutivesKeyExecutivesInner
Source§fn clone(&self) -> KeyExecutivesKeyExecutivesInner
fn clone(&self) -> KeyExecutivesKeyExecutivesInner
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 Default for KeyExecutivesKeyExecutivesInner
impl Default for KeyExecutivesKeyExecutivesInner
Source§fn default() -> KeyExecutivesKeyExecutivesInner
fn default() -> KeyExecutivesKeyExecutivesInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KeyExecutivesKeyExecutivesInner
impl<'de> Deserialize<'de> for KeyExecutivesKeyExecutivesInner
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 KeyExecutivesKeyExecutivesInner
impl PartialEq for KeyExecutivesKeyExecutivesInner
Source§fn eq(&self, other: &KeyExecutivesKeyExecutivesInner) -> bool
fn eq(&self, other: &KeyExecutivesKeyExecutivesInner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for KeyExecutivesKeyExecutivesInner
Auto Trait Implementations§
impl Freeze for KeyExecutivesKeyExecutivesInner
impl RefUnwindSafe for KeyExecutivesKeyExecutivesInner
impl Send for KeyExecutivesKeyExecutivesInner
impl Sync for KeyExecutivesKeyExecutivesInner
impl Unpin for KeyExecutivesKeyExecutivesInner
impl UnwindSafe for KeyExecutivesKeyExecutivesInner
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