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