pub struct TransferTransactionBuilder {
pub super_object: TransactionBuilder,
pub body: TransferTransactionBodyBuilder,
}
Expand description
Binary layout for a non-embedded transfer transaction.
Fields§
§super_object: TransactionBuilder
Transaction.
body: TransferTransactionBodyBuilder
Transfer transaction body.
Implementations§
Source§impl TransferTransactionBuilder
impl TransferTransactionBuilder
Sourcepub fn from_binary(payload: &[u8]) -> Self
pub fn from_binary(payload: &[u8]) -> Self
Creates an instance of TransferTransactionBuilder from binary payload. payload: Byte payload to use to serialize the object.
§Returns
A TransferTransactionBuilder.
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 TransferTransactionBuilder
impl Clone for TransferTransactionBuilder
Source§fn clone(&self) -> TransferTransactionBuilder
fn clone(&self) -> TransferTransactionBuilder
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 TransferTransactionBuilder
impl RefUnwindSafe for TransferTransactionBuilder
impl Send for TransferTransactionBuilder
impl Sync for TransferTransactionBuilder
impl Unpin for TransferTransactionBuilder
impl UnwindSafe for TransferTransactionBuilder
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