pub struct CreateRawTransactionInput {
pub txid: Txid,
pub vout: u32,
pub sequence: Option<u32>,
}
Fields§
§txid: Txid
§vout: u32
§sequence: Option<u32>
Trait Implementations§
Source§impl Clone for CreateRawTransactionInput
impl Clone for CreateRawTransactionInput
Source§fn clone(&self) -> CreateRawTransactionInput
fn clone(&self) -> CreateRawTransactionInput
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateRawTransactionInput
impl Debug for CreateRawTransactionInput
Source§impl PartialEq for CreateRawTransactionInput
impl PartialEq for CreateRawTransactionInput
Source§fn eq(&self, other: &CreateRawTransactionInput) -> bool
fn eq(&self, other: &CreateRawTransactionInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for CreateRawTransactionInput
impl StructuralPartialEq for CreateRawTransactionInput
Auto Trait Implementations§
impl Freeze for CreateRawTransactionInput
impl RefUnwindSafe for CreateRawTransactionInput
impl Send for CreateRawTransactionInput
impl Sync for CreateRawTransactionInput
impl Unpin for CreateRawTransactionInput
impl UnwindSafe for CreateRawTransactionInput
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