pub struct EmbeddedAccountAddressRestrictionTransactionBuilder {
pub super_object: EmbeddedTransactionBuilder,
pub body: AccountAddressRestrictionTransactionBodyBuilder,
}
Expand description
Binary layout for an embedded account address restriction transaction.
Fields§
§super_object: EmbeddedTransactionBuilder
Embedded transaction.
body: AccountAddressRestrictionTransactionBodyBuilder
Account address restriction transaction body.
Implementations§
Source§impl EmbeddedAccountAddressRestrictionTransactionBuilder
impl EmbeddedAccountAddressRestrictionTransactionBuilder
Sourcepub fn from_binary(payload: &[u8]) -> Self
pub fn from_binary(payload: &[u8]) -> Self
Creates an instance of EmbeddedAccountAddressRestrictionTransactionBuilder from binary payload. payload: Byte payload to use to serialize the object.
§Returns
A EmbeddedAccountAddressRestrictionTransactionBuilder.
pub fn get_restriction_flags(&self) -> Vec<AccountRestrictionFlagsDto>
pub fn set_restriction_flags( &mut self, restriction_flags: Vec<AccountRestrictionFlagsDto>, )
pub fn get_restriction_additions(&self) -> Vec<UnresolvedAddressDto>
pub fn get_restriction_deletions(&self) -> Vec<UnresolvedAddressDto>
Trait Implementations§
Source§impl Clone for EmbeddedAccountAddressRestrictionTransactionBuilder
impl Clone for EmbeddedAccountAddressRestrictionTransactionBuilder
Source§fn clone(&self) -> EmbeddedAccountAddressRestrictionTransactionBuilder
fn clone(&self) -> EmbeddedAccountAddressRestrictionTransactionBuilder
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 EmbeddedAccountAddressRestrictionTransactionBuilder
impl RefUnwindSafe for EmbeddedAccountAddressRestrictionTransactionBuilder
impl Send for EmbeddedAccountAddressRestrictionTransactionBuilder
impl Sync for EmbeddedAccountAddressRestrictionTransactionBuilder
impl Unpin for EmbeddedAccountAddressRestrictionTransactionBuilder
impl UnwindSafe for EmbeddedAccountAddressRestrictionTransactionBuilder
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