pub struct QuorumApprovedChallengeResponsePayload {
pub signature: Signature,
pub approving_quorum: Vec<VerifyingKey>,
}
Expand description
A command approval payload.
Fields§
§signature: Signature
A signature of the identity challenge from a quorum of approving parties by the initiating party.
approving_quorum: Vec<VerifyingKey>
The verifying keys of the approving parties that jointly form a quorum with the initiating party.
Trait Implementations§
Source§impl Clone for QuorumApprovedChallengeResponsePayload
impl Clone for QuorumApprovedChallengeResponsePayload
Source§fn clone(&self) -> QuorumApprovedChallengeResponsePayload
fn clone(&self) -> QuorumApprovedChallengeResponsePayload
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 moreAuto Trait Implementations§
impl Freeze for QuorumApprovedChallengeResponsePayload
impl RefUnwindSafe for QuorumApprovedChallengeResponsePayload
impl Send for QuorumApprovedChallengeResponsePayload
impl Sync for QuorumApprovedChallengeResponsePayload
impl Unpin for QuorumApprovedChallengeResponsePayload
impl UnwindSafe for QuorumApprovedChallengeResponsePayload
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