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