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