pub struct MultisigEntryBuilder { /* private fields */ }
Expand description
Binary layout for a multisig entry.
Implementations§
Source§impl MultisigEntryBuilder
impl MultisigEntryBuilder
Sourcepub fn from_binary(_bytes: &[u8]) -> Self
pub fn from_binary(_bytes: &[u8]) -> Self
Creates an instance of MultisigEntryBuilder from binary payload. payload: Byte payload to use to serialize the object.
§Returns
A MultisigEntryBuilder.
Sourcepub fn get_min_approval(&self) -> u32
pub fn get_min_approval(&self) -> u32
Sourcepub fn get_min_removal(&self) -> u32
pub fn get_min_removal(&self) -> u32
Sourcepub fn get_account_address(&self) -> AddressDto
pub fn get_account_address(&self) -> AddressDto
Sourcepub fn get_cosignatory_addresses(&self) -> Vec<AddressDto>
pub fn get_cosignatory_addresses(&self) -> Vec<AddressDto>
Sourcepub fn get_multisig_addresses(&self) -> Vec<AddressDto>
pub fn get_multisig_addresses(&self) -> Vec<AddressDto>
Gets accounts for which the entry is cosignatory.
§Returns
A Accounts for which the entry is cosignatory.
Trait Implementations§
Source§impl Clone for MultisigEntryBuilder
impl Clone for MultisigEntryBuilder
Source§fn clone(&self) -> MultisigEntryBuilder
fn clone(&self) -> MultisigEntryBuilder
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 MultisigEntryBuilder
impl RefUnwindSafe for MultisigEntryBuilder
impl Send for MultisigEntryBuilder
impl Sync for MultisigEntryBuilder
impl Unpin for MultisigEntryBuilder
impl UnwindSafe for MultisigEntryBuilder
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