#[repr(C)]pub struct Multisig {
pub m: u8,
pub n: u8,
pub is_initialized: bool,
pub signers: [Pubkey; 11],
}
Expand description
Multisignature data.
Fields
m: u8
Number of signers required
n: u8
Number of valid signers
is_initialized: bool
Is true
if this structure has been initialized
signers: [Pubkey; 11]
Signer public keys
Trait Implementations
Is initialized
Get the packed length
Unpack from slice and check if initialized
Unpack from slice without checking if initialized
Auto Trait Implementations
impl RefUnwindSafe for Multisig
impl UnwindSafe for Multisig
Blanket Implementations
pub default fn example() -> T
Mutably borrows from an owned value. Read more