pub struct PublicKeySet {
pub signer: PublicKey,
pub cosigner: Option<PublicKey>,
}Expand description
Set of public keys for verification
Fields§
§signer: PublicKeyPrimary signer public key
cosigner: Option<PublicKey>Optional co-signer public key
Implementations§
Source§impl PublicKeySet
impl PublicKeySet
Trait Implementations§
Source§impl Clone for PublicKeySet
impl Clone for PublicKeySet
Source§fn clone(&self) -> PublicKeySet
fn clone(&self) -> PublicKeySet
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 PublicKeySet
impl RefUnwindSafe for PublicKeySet
impl Send for PublicKeySet
impl Sync for PublicKeySet
impl Unpin for PublicKeySet
impl UnsafeUnpin for PublicKeySet
impl UnwindSafe for PublicKeySet
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