pub struct Party {
pub party_id: Vec<Identifier>,
pub isni: Option<String>,
pub ipi: Option<String>,
pub party_name: Vec<LocalizedString>,
pub party_role: Vec<PartyRole>,
pub contact_details: Option<ContactDetails>,
}
Fields§
§party_id: Vec<Identifier>
§isni: Option<String>
§ipi: Option<String>
§party_name: Vec<LocalizedString>
§party_role: Vec<PartyRole>
§contact_details: Option<ContactDetails>
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