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