pub struct SignableTransaction {
pub tx: Vec<u8>,
pub reference: Vec<u8>,
}Expand description
Data needed to complete signing of a partial transaction.
Fields§
§tx: Vec<u8>§reference: Vec<u8>Trait Implementations§
Source§impl Clone for SignableTransaction
impl Clone for SignableTransaction
Source§fn clone(&self) -> SignableTransaction
fn clone(&self) -> SignableTransaction
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 SignableTransaction
impl RefUnwindSafe for SignableTransaction
impl Send for SignableTransaction
impl Sync for SignableTransaction
impl Unpin for SignableTransaction
impl UnsafeUnpin for SignableTransaction
impl UnwindSafe for SignableTransaction
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