pub struct Parties {
pub party: Vec<Party>,
}
Expand description
A collection of objects that define specific parties to a deal. This includes the direct participating parties, such as borrower and seller and the indirect parties such as the credit report provider.
Fields§
§party: Vec<Party>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Parties
impl<'de> Deserialize<'de> for Parties
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 Parties
impl RefUnwindSafe for Parties
impl Send for Parties
impl Sync for Parties
impl Unpin for Parties
impl UnwindSafe for Parties
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