pub struct ParticipantRejection {
pub participant_id: ParticipantId,
pub reason: String,
pub signature: Vec<u8>,
pub timestamp: SystemTime,
}Expand description
Participant rejection
Fields§
§participant_id: ParticipantId§reason: String§signature: Vec<u8>§timestamp: SystemTimeTrait Implementations§
Source§impl Clone for ParticipantRejection
impl Clone for ParticipantRejection
Source§fn clone(&self) -> ParticipantRejection
fn clone(&self) -> ParticipantRejection
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 ParticipantRejection
impl Debug for ParticipantRejection
Source§impl<'de> Deserialize<'de> for ParticipantRejection
impl<'de> Deserialize<'de> for ParticipantRejection
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 ParticipantRejection
impl RefUnwindSafe for ParticipantRejection
impl Send for ParticipantRejection
impl Sync for ParticipantRejection
impl Unpin for ParticipantRejection
impl UnwindSafe for ParticipantRejection
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