pub struct GetPartiesResponse {
pub party_details: Option<Vec<PartyDetails>>,
}
Fields§
§party_details: Option<Vec<PartyDetails>>
The details of the requested Daml parties by the participant, if known. The party details may not be in the same order as requested. Required
Implementations§
Source§impl GetPartiesResponse
impl GetPartiesResponse
pub fn new() -> GetPartiesResponse
Trait Implementations§
Source§impl Clone for GetPartiesResponse
impl Clone for GetPartiesResponse
Source§fn clone(&self) -> GetPartiesResponse
fn clone(&self) -> GetPartiesResponse
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 GetPartiesResponse
impl Debug for GetPartiesResponse
Source§impl Default for GetPartiesResponse
impl Default for GetPartiesResponse
Source§fn default() -> GetPartiesResponse
fn default() -> GetPartiesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetPartiesResponse
impl<'de> Deserialize<'de> for GetPartiesResponse
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
Source§impl PartialEq for GetPartiesResponse
impl PartialEq for GetPartiesResponse
Source§impl Serialize for GetPartiesResponse
impl Serialize for GetPartiesResponse
impl StructuralPartialEq for GetPartiesResponse
Auto Trait Implementations§
impl Freeze for GetPartiesResponse
impl RefUnwindSafe for GetPartiesResponse
impl Send for GetPartiesResponse
impl Sync for GetPartiesResponse
impl Unpin for GetPartiesResponse
impl UnwindSafe for GetPartiesResponse
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