pub struct PreparedTransactionData {
pub essence: Essence,
pub address_index_recorders: Vec<AddressIndexRecorder>,
}
Expand description
Helper struct for offline signing
Fields§
§essence: Essence
Transaction essence
address_index_recorders: Vec<AddressIndexRecorder>
Required address information for signing
Trait Implementations§
Source§impl Clone for PreparedTransactionData
impl Clone for PreparedTransactionData
Source§fn clone(&self) -> PreparedTransactionData
fn clone(&self) -> PreparedTransactionData
Returns a copy 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 moreSource§impl Debug for PreparedTransactionData
impl Debug for PreparedTransactionData
Source§impl<'de> Deserialize<'de> for PreparedTransactionData
impl<'de> Deserialize<'de> for PreparedTransactionData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PreparedTransactionData
impl RefUnwindSafe for PreparedTransactionData
impl Send for PreparedTransactionData
impl Sync for PreparedTransactionData
impl Unpin for PreparedTransactionData
impl UnwindSafe for PreparedTransactionData
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