pub struct MultiwithdrawRequest {
pub feerate: Option<Feerate>,
pub minconf: Option<u32>,
pub utxos: Option<Vec<Outpoint>>,
pub outputs: Vec<OutputDesc>,
}Fields§
§feerate: Option<Feerate>§minconf: Option<u32>§utxos: Option<Vec<Outpoint>>§outputs: Vec<OutputDesc>Trait Implementations§
Source§impl Clone for MultiwithdrawRequest
impl Clone for MultiwithdrawRequest
Source§fn clone(&self) -> MultiwithdrawRequest
fn clone(&self) -> MultiwithdrawRequest
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 moreSource§impl Debug for MultiwithdrawRequest
impl Debug for MultiwithdrawRequest
Source§impl<'de> Deserialize<'de> for MultiwithdrawRequest
impl<'de> Deserialize<'de> for MultiwithdrawRequest
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
Source§impl From<MultiwithdrawRequest> for Request
impl From<MultiwithdrawRequest> for Request
Source§fn from(r: MultiwithdrawRequest) -> Self
fn from(r: MultiwithdrawRequest) -> Self
Converts to this type from the input type.
Source§impl Serialize for MultiwithdrawRequest
impl Serialize for MultiwithdrawRequest
Source§impl TypedRequest for MultiwithdrawRequest
impl TypedRequest for MultiwithdrawRequest
Auto Trait Implementations§
impl Freeze for MultiwithdrawRequest
impl RefUnwindSafe for MultiwithdrawRequest
impl Send for MultiwithdrawRequest
impl Sync for MultiwithdrawRequest
impl Unpin for MultiwithdrawRequest
impl UnwindSafe for MultiwithdrawRequest
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