pub struct JurisdictionNodeInput {
pub country_code: String,
pub country_name: String,
pub framework: String,
pub standard_count: usize,
pub tax_rate: f64,
}Expand description
Input data for a jurisdiction node.
Fields§
§country_code: String§country_name: String§framework: String§standard_count: usize§tax_rate: f64Trait Implementations§
Source§impl Clone for JurisdictionNodeInput
impl Clone for JurisdictionNodeInput
Source§fn clone(&self) -> JurisdictionNodeInput
fn clone(&self) -> JurisdictionNodeInput
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 moreAuto Trait Implementations§
impl Freeze for JurisdictionNodeInput
impl RefUnwindSafe for JurisdictionNodeInput
impl Send for JurisdictionNodeInput
impl Sync for JurisdictionNodeInput
impl Unpin for JurisdictionNodeInput
impl UnsafeUnpin for JurisdictionNodeInput
impl UnwindSafe for JurisdictionNodeInput
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