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