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