pub struct JpRule {
pub hs_code: &'static str,
pub jp_code: &'static str,
pub jp_description: &'static str,
pub tariff_rate: Option<&'static str>,
}Expand description
A Japan tariff entry mapping an HS heading to a statistical item code.
Fields§
§hs_code: &'static strSix-digit HS 2022 code (e.g. "281511").
jp_code: &'static strNine-digit Japan statistical item code (e.g. "281511000").
For most basic chemicals the last three digits are "000", indicating
no Japan-specific sub-classification within that HS subheading.
jp_description: &'static strShort description in Japanese.
tariff_rate: Option<&'static str>Applicable tariff rate (informational, e.g. "free" or "6.5%").
None when the rate is complex (depends on end-use, origin, etc.).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JpRule
impl RefUnwindSafe for JpRule
impl Send for JpRule
impl Sync for JpRule
impl Unpin for JpRule
impl UnsafeUnpin for JpRule
impl UnwindSafe for JpRule
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