pub struct ReportCompanyFinancials {
pub balance: i64,
pub employees: i32,
pub wages: Wages,
}
Fields§
§balance: i64
§employees: i32
§wages: Wages
Trait Implementations§
Source§impl Clone for ReportCompanyFinancials
impl Clone for ReportCompanyFinancials
Source§fn clone(&self) -> ReportCompanyFinancials
fn clone(&self) -> ReportCompanyFinancials
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ReportCompanyFinancials
impl Debug for ReportCompanyFinancials
Source§impl<'de> Deserialize<'de> for ReportCompanyFinancials
impl<'de> Deserialize<'de> for ReportCompanyFinancials
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<ReportCompanyFinancials> for Report
impl From<ReportCompanyFinancials> for Report
Source§fn from(value: ReportCompanyFinancials) -> Self
fn from(value: ReportCompanyFinancials) -> Self
Converts to this type from the input type.
Source§impl From<ReportCompanyFinancials> for Report
impl From<ReportCompanyFinancials> for Report
Source§fn from(value: ReportCompanyFinancials) -> Self
fn from(value: ReportCompanyFinancials) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReportCompanyFinancials
impl PartialEq for ReportCompanyFinancials
Source§fn eq(&self, other: &ReportCompanyFinancials) -> bool
fn eq(&self, other: &ReportCompanyFinancials) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ReportCompanyFinancials
Auto Trait Implementations§
impl Freeze for ReportCompanyFinancials
impl RefUnwindSafe for ReportCompanyFinancials
impl Send for ReportCompanyFinancials
impl Sync for ReportCompanyFinancials
impl Unpin for ReportCompanyFinancials
impl UnwindSafe for ReportCompanyFinancials
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