pub struct Party {
pub name: String,
pub country: String,
pub tax_id: Option<String>,
pub id_scheme: Option<String>,
}Fields§
§name: String§country: String§tax_id: Option<String>§id_scheme: Option<String>Scheme id for the tax identifier (e.g. TIN, BRN, VAT).
Implementations§
Trait Implementations§
impl Eq for Party
impl StructuralPartialEq for Party
Auto Trait Implementations§
impl Freeze for Party
impl RefUnwindSafe for Party
impl Send for Party
impl Sync for Party
impl Unpin for Party
impl UnsafeUnpin for Party
impl UnwindSafe for Party
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