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