pub struct UserCompany {
pub type: Type,
pub id: CompanyId,
pub type_id: CompanyTypeId,
pub name: String,
pub rating: i32,
pub position: String,
pub days_in_company: i32,
}
Fields§
§type: Type
§id: CompanyId
§type_id: CompanyTypeId
§name: String
§rating: i32
§position: String
§days_in_company: i32
Trait Implementations§
Source§impl Clone for UserCompany
impl Clone for UserCompany
Source§fn clone(&self) -> UserCompany
fn clone(&self) -> UserCompany
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 UserCompany
impl Debug for UserCompany
Source§impl<'de> Deserialize<'de> for UserCompany
impl<'de> Deserialize<'de> for UserCompany
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 From<UserCompany> for Job
impl From<UserCompany> for Job
Source§fn from(value: UserCompany) -> Self
fn from(value: UserCompany) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UserCompany
impl PartialEq for UserCompany
impl StructuralPartialEq for UserCompany
Auto Trait Implementations§
impl Freeze for UserCompany
impl RefUnwindSafe for UserCompany
impl Send for UserCompany
impl Sync for UserCompany
impl Unpin for UserCompany
impl UnwindSafe for UserCompany
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