pub struct Party {
pub name: Option<String>,
pub tax_id: Option<String>,
pub address: Option<Address>,
pub email: Option<String>,
pub phone: Option<String>,
}Expand description
交易方信息结构体(供应商或客户)
Fields§
§name: Option<String>公司/个人名称
tax_id: Option<String>税务识别号(如统一编号、VAT号等)
address: Option<Address>地址信息
email: Option<String>电子邮件
phone: Option<String>电话号码
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Party
impl<'de> Deserialize<'de> for Party
Source§fn 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
Auto Trait Implementations§
impl Freeze for Party
impl RefUnwindSafe for Party
impl Send for Party
impl Sync for Party
impl Unpin 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