pub struct EmbeddedAccountKeyLinkTransactionBuilder {
pub super_object: EmbeddedTransactionBuilder,
pub body: AccountKeyLinkTransactionBodyBuilder,
}
Expand description
Binary layout for an embedded account key link transaction.
Fields§
§super_object: EmbeddedTransactionBuilder
Embedded transaction.
body: AccountKeyLinkTransactionBodyBuilder
Account key link transaction body.
Implementations§
Source§impl EmbeddedAccountKeyLinkTransactionBuilder
impl EmbeddedAccountKeyLinkTransactionBuilder
Sourcepub fn from_binary(payload: &[u8]) -> Self
pub fn from_binary(payload: &[u8]) -> Self
Creates an instance of EmbeddedAccountKeyLinkTransactionBuilder from binary payload. payload: Byte payload to use to serialize the object.
§Returns
A EmbeddedAccountKeyLinkTransactionBuilder.
pub fn get_linked_public_key(&self) -> KeyDto
pub fn set_linked_public_key(&mut self, linked_public_key: KeyDto)
pub fn get_link_action(&self) -> LinkActionDto
pub fn set_link_action(&mut self, link_action: LinkActionDto)
Trait Implementations§
Source§impl Clone for EmbeddedAccountKeyLinkTransactionBuilder
impl Clone for EmbeddedAccountKeyLinkTransactionBuilder
Source§fn clone(&self) -> EmbeddedAccountKeyLinkTransactionBuilder
fn clone(&self) -> EmbeddedAccountKeyLinkTransactionBuilder
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 EmbeddedAccountKeyLinkTransactionBuilder
impl RefUnwindSafe for EmbeddedAccountKeyLinkTransactionBuilder
impl Send for EmbeddedAccountKeyLinkTransactionBuilder
impl Sync for EmbeddedAccountKeyLinkTransactionBuilder
impl Unpin for EmbeddedAccountKeyLinkTransactionBuilder
impl UnwindSafe for EmbeddedAccountKeyLinkTransactionBuilder
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