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