pub struct AccountMosaicRestrictionTransactionBodyBuilder {
pub restriction_flags: Vec<AccountRestrictionFlagsDto>,
pub restriction_additions: Vec<UnresolvedMosaicIdDto>,
pub restriction_deletions: Vec<UnresolvedMosaicIdDto>,
}Expand description
Binary layout for an account mosaic restriction transaction.
Fields§
§restriction_flags: Vec<AccountRestrictionFlagsDto>Account restriction flags.
restriction_additions: Vec<UnresolvedMosaicIdDto>Account restriction additions.
restriction_deletions: Vec<UnresolvedMosaicIdDto>Account restriction deletions.
Implementations§
Source§impl AccountMosaicRestrictionTransactionBodyBuilder
impl AccountMosaicRestrictionTransactionBodyBuilder
Sourcepub fn from_binary(payload: &[u8]) -> Self
pub fn from_binary(payload: &[u8]) -> Self
Creates an instance of AccountMosaicRestrictionTransactionBodyBuilder from binary payload. payload: Byte payload to use to serialize the object.
§Returns
A AccountMosaicRestrictionTransactionBodyBuilder.
Trait Implementations§
Source§impl Clone for AccountMosaicRestrictionTransactionBodyBuilder
impl Clone for AccountMosaicRestrictionTransactionBodyBuilder
Source§fn clone(&self) -> AccountMosaicRestrictionTransactionBodyBuilder
fn clone(&self) -> AccountMosaicRestrictionTransactionBodyBuilder
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 AccountMosaicRestrictionTransactionBodyBuilder
impl RefUnwindSafe for AccountMosaicRestrictionTransactionBodyBuilder
impl Send for AccountMosaicRestrictionTransactionBodyBuilder
impl Sync for AccountMosaicRestrictionTransactionBodyBuilder
impl Unpin for AccountMosaicRestrictionTransactionBodyBuilder
impl UnwindSafe for AccountMosaicRestrictionTransactionBodyBuilder
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