pub struct MktActivityRecord {
pub market_participant_m_rid: SimpleContent<String>,
pub status: ParticipantStatus,
}Expand description
Participant status record in a StatusRequest_MarketDocument.
Fields§
§market_participant_m_rid: SimpleContent<String>Market participant identifier (max 16 chars).
status: ParticipantStatusParticipant status: deactivated, reactivated, or withdrawn.
Trait Implementations§
Source§impl Clone for MktActivityRecord
impl Clone for MktActivityRecord
Source§fn clone(&self) -> MktActivityRecord
fn clone(&self) -> MktActivityRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MktActivityRecord
impl Debug for MktActivityRecord
Source§impl<'de> Deserialize<'de> for MktActivityRecord
impl<'de> Deserialize<'de> for MktActivityRecord
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 MktActivityRecord
impl PartialEq for MktActivityRecord
Source§fn eq(&self, other: &MktActivityRecord) -> bool
fn eq(&self, other: &MktActivityRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MktActivityRecord
impl Serialize for MktActivityRecord
impl StructuralPartialEq for MktActivityRecord
Auto Trait Implementations§
impl Freeze for MktActivityRecord
impl RefUnwindSafe for MktActivityRecord
impl Send for MktActivityRecord
impl Sync for MktActivityRecord
impl Unpin for MktActivityRecord
impl UnsafeUnpin for MktActivityRecord
impl UnwindSafe for MktActivityRecord
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