pub struct Career {
pub group_id: Option<u64>,
pub company: Option<String>,
pub country_id: Option<u64>,
pub city_name: Option<String>,
pub city_id: Option<u64>,
pub from: Option<u64>,
pub until: Option<u64>,
pub position: Option<String>,
}Expand description
Information about the user’s career
Fields§
§group_id: Option<u64>Community ID (if available, otherwise company);
company: Option<String>Company name (if available, otherwise group_id);
country_id: Option<u64>Country identifier
city_name: Option<String>Name of the city (if available, otherwise) city_id;
city_id: Option<u64>City ID (if available, otherwise city_name);
from: Option<u64>Year of commencement of work
until: Option<u64>The year of termination of employment
position: Option<String>Position
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Career
impl<'de> Deserialize<'de> for Career
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 Career
impl RefUnwindSafe for Career
impl Send for Career
impl Sync for Career
impl Unpin for Career
impl UnwindSafe for Career
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