pub struct PartialParty {
pub party_reference: Option<String>,
pub party_name: Vec<LocalizedString>,
pub party_id: Vec<Identifier>,
pub role: Vec<String>,
pub completed_fields: usize,
pub memory_estimate: usize,
}Expand description
Partial party being built during streaming
Fields§
§party_reference: Option<String>§party_name: Vec<LocalizedString>§party_id: Vec<Identifier>§role: Vec<String>§completed_fields: usize§memory_estimate: usizeTrait Implementations§
Source§impl Clone for PartialParty
impl Clone for PartialParty
Source§fn clone(&self) -> PartialParty
fn clone(&self) -> PartialParty
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PartialParty
impl Debug for PartialParty
Source§impl Default for PartialParty
impl Default for PartialParty
Source§fn default() -> PartialParty
fn default() -> PartialParty
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PartialParty
impl RefUnwindSafe for PartialParty
impl Send for PartialParty
impl Sync for PartialParty
impl Unpin for PartialParty
impl UnwindSafe for PartialParty
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