pub struct EmbeddedTransferTransactionBuilder {
pub super_object: EmbeddedTransactionBuilder,
pub body: TransferTransactionBodyBuilder,
}
Expand description
Binary layout for an embedded transfer transaction.
Fields§
§super_object: EmbeddedTransactionBuilder
Embedded transaction.
body: TransferTransactionBodyBuilder
Transfer transaction body.
Implementations§
Source§impl EmbeddedTransferTransactionBuilder
impl EmbeddedTransferTransactionBuilder
Sourcepub fn from_binary(payload: &[u8]) -> Self
pub fn from_binary(payload: &[u8]) -> Self
Creates an instance of EmbeddedTransferTransactionBuilder from binary payload. payload: Byte payload to use to serialize the object.
§Returns
A EmbeddedTransferTransactionBuilder.
pub fn get_recipient_address(&self) -> UnresolvedAddressDto
pub fn set_recipient_address(&mut self, recipient_address: UnresolvedAddressDto)
pub fn get_mosaics(&self) -> Vec<UnresolvedMosaicBuilder>
pub fn get_message(&self) -> Vec<u8> ⓘ
pub fn set_message(&mut self, message: Vec<u8>)
Trait Implementations§
Source§impl Clone for EmbeddedTransferTransactionBuilder
impl Clone for EmbeddedTransferTransactionBuilder
Source§fn clone(&self) -> EmbeddedTransferTransactionBuilder
fn clone(&self) -> EmbeddedTransferTransactionBuilder
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 EmbeddedTransferTransactionBuilder
impl RefUnwindSafe for EmbeddedTransferTransactionBuilder
impl Send for EmbeddedTransferTransactionBuilder
impl Sync for EmbeddedTransferTransactionBuilder
impl Unpin for EmbeddedTransferTransactionBuilder
impl UnwindSafe for EmbeddedTransferTransactionBuilder
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