pub struct SalesTaxRateInput {
pub effective: NaiveDate,
pub rate: Decimal,
}Expand description
A rate input for sales tax patch.
Fields§
§effective: NaiveDate§rate: DecimalTrait Implementations§
Source§impl Clone for SalesTaxRateInput
impl Clone for SalesTaxRateInput
Source§fn clone(&self) -> SalesTaxRateInput
fn clone(&self) -> SalesTaxRateInput
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 SalesTaxRateInput
impl Debug for SalesTaxRateInput
Auto Trait Implementations§
impl Freeze for SalesTaxRateInput
impl RefUnwindSafe for SalesTaxRateInput
impl Send for SalesTaxRateInput
impl Sync for SalesTaxRateInput
impl Unpin for SalesTaxRateInput
impl UnsafeUnpin for SalesTaxRateInput
impl UnwindSafe for SalesTaxRateInput
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