pub struct QuorumPublicKey {
pub quorum_id: String,
pub algorithm: String,
pub bytes: Vec<u8>,
pub custodian_count: u32,
pub threshold: u32,
}Expand description
Quorum public key (recipient of escrowed data).
Fields§
§quorum_id: StringQuorum identifier.
algorithm: StringAlgorithm.
bytes: Vec<u8>Raw public key bytes.
custodian_count: u32Number of custodians N.
threshold: u32Threshold T.
Trait Implementations§
Source§impl Clone for QuorumPublicKey
impl Clone for QuorumPublicKey
Source§fn clone(&self) -> QuorumPublicKey
fn clone(&self) -> QuorumPublicKey
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 moreAuto Trait Implementations§
impl Freeze for QuorumPublicKey
impl RefUnwindSafe for QuorumPublicKey
impl Send for QuorumPublicKey
impl Sync for QuorumPublicKey
impl Unpin for QuorumPublicKey
impl UnsafeUnpin for QuorumPublicKey
impl UnwindSafe for QuorumPublicKey
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