pub struct SignerEntry {
pub account: [u8; 20],
pub weight: u16,
}Expand description
A signer entry for multisign transactions.
Fields§
§account: [u8; 20]Signer’s account ID.
weight: u16Signer’s weight.
Trait Implementations§
Source§impl Clone for SignerEntry
impl Clone for SignerEntry
Source§fn clone(&self) -> SignerEntry
fn clone(&self) -> SignerEntry
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 SignerEntry
impl RefUnwindSafe for SignerEntry
impl Send for SignerEntry
impl Sync for SignerEntry
impl Unpin for SignerEntry
impl UnsafeUnpin for SignerEntry
impl UnwindSafe for SignerEntry
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