pub struct CreatepsbtParams {
pub inputs: Vec<Value>,
pub outputs: Vec<Value>,
pub locktime: u32,
pub replaceable: bool,
pub version: u32,
}Expand description
Creates a transaction in the Partially Signed Transaction format. Implements the Creator role. Note that the transaction“s inputs are not signed, and it is not stored in the wallet or transmitted to the network.
Fields§
§inputs: Vec<Value>§outputs: Vec<Value>§locktime: u32§replaceable: bool§version: u32Trait Implementations§
Source§impl Debug for CreatepsbtParams
impl Debug for CreatepsbtParams
Auto Trait Implementations§
impl Freeze for CreatepsbtParams
impl RefUnwindSafe for CreatepsbtParams
impl Send for CreatepsbtParams
impl Sync for CreatepsbtParams
impl Unpin for CreatepsbtParams
impl UnsafeUnpin for CreatepsbtParams
impl UnwindSafe for CreatepsbtParams
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