pub struct Totals {Show 20 fields
pub additional_earnings: String,
pub benefits: String,
pub check_amount: String,
pub child_support_debit: String,
pub company_debit: String,
pub deferred_payroll_taxes: String,
pub employee_benefits_deductions: String,
pub employee_bonuses: String,
pub employee_cash_tips: String,
pub employee_commissions: String,
pub employee_paycheck_tips: String,
pub employee_taxes: String,
pub employer_taxes: String,
pub gross_pay: String,
pub net_pay: String,
pub net_pay_debit: String,
pub owners_draw: String,
pub reimbursement_debit: String,
pub reimbursements: String,
pub tax_debit: String,
}Expand description
The subtotals for the payroll.
Fields
additional_earnings: StringThe subtotals for the payroll.
benefits: StringThe subtotals for the payroll.
check_amount: StringThe subtotals for the payroll.
child_support_debit: StringThe subtotals for the payroll.
company_debit: StringThe subtotals for the payroll.
deferred_payroll_taxes: StringThe subtotals for the payroll.
employee_benefits_deductions: StringThe subtotals for the payroll.
employee_bonuses: StringThe subtotals for the payroll.
employee_cash_tips: StringThe subtotals for the payroll.
employee_commissions: StringThe subtotals for the payroll.
employee_paycheck_tips: StringThe subtotals for the payroll.
employee_taxes: StringThe subtotals for the payroll.
employer_taxes: StringThe subtotals for the payroll.
gross_pay: StringThe subtotals for the payroll.
net_pay: StringThe subtotals for the payroll.
net_pay_debit: StringThe subtotals for the payroll.
owners_draw: StringThe subtotals for the payroll.
reimbursement_debit: StringThe subtotals for the payroll.
reimbursements: StringThe subtotals for the payroll.
tax_debit: StringThe subtotals for the payroll.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Totals
impl<'de> Deserialize<'de> for Totals
sourcefn 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
sourceimpl JsonSchema for Totals
impl JsonSchema for Totals
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq for Totals
Auto Trait Implementations
impl RefUnwindSafe for Totals
impl Send for Totals
impl Sync for Totals
impl Unpin for Totals
impl UnwindSafe for Totals
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more