pub struct EmbeddedTransactionBuilder {
pub signer_public_key: KeyDto,
pub version: u8,
pub network: NetworkTypeDto,
pub _type: EntityTypeDto,
}
Expand description
Binary layout for an embedded transaction.
Fields§
§signer_public_key: KeyDto
Entity signer’s public key.
version: u8
Entity version.
network: NetworkTypeDto
Entity network.
_type: EntityTypeDto
Entity type.
Implementations§
Source§impl EmbeddedTransactionBuilder
impl EmbeddedTransactionBuilder
Sourcepub fn from_binary(payload: &[u8]) -> Self
pub fn from_binary(payload: &[u8]) -> Self
Creates an instance of EmbeddedTransactionBuilder from binary payload. payload: Byte payload to use to serialize the object.
§Returns
A EmbeddedTransactionBuilder.
Trait Implementations§
Source§impl Clone for EmbeddedTransactionBuilder
impl Clone for EmbeddedTransactionBuilder
Source§fn clone(&self) -> EmbeddedTransactionBuilder
fn clone(&self) -> EmbeddedTransactionBuilder
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 EmbeddedTransactionBuilder
impl RefUnwindSafe for EmbeddedTransactionBuilder
impl Send for EmbeddedTransactionBuilder
impl Sync for EmbeddedTransactionBuilder
impl Unpin for EmbeddedTransactionBuilder
impl UnwindSafe for EmbeddedTransactionBuilder
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