pub struct WithdrawRequest {
pub feerate: Option<Feerate>,
pub minconf: Option<u16>,
pub utxos: Option<Vec<Outpoint>>,
pub destination: String,
pub satoshi: AmountOrAll,
}Fields§
§feerate: Option<Feerate>§minconf: Option<u16>§utxos: Option<Vec<Outpoint>>§destination: String§satoshi: AmountOrAllTrait Implementations§
Source§impl Clone for WithdrawRequest
impl Clone for WithdrawRequest
Source§fn clone(&self) -> WithdrawRequest
fn clone(&self) -> WithdrawRequest
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 WithdrawRequest
impl Debug for WithdrawRequest
Source§impl<'de> Deserialize<'de> for WithdrawRequest
impl<'de> Deserialize<'de> for WithdrawRequest
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<WithdrawRequest> for Request
impl From<WithdrawRequest> for Request
Source§fn from(r: WithdrawRequest) -> Self
fn from(r: WithdrawRequest) -> Self
Converts to this type from the input type.
Source§impl IntoRequest for WithdrawRequest
impl IntoRequest for WithdrawRequest
type Response = WithdrawResponse
Source§impl Serialize for WithdrawRequest
impl Serialize for WithdrawRequest
Source§impl TypedRequest for WithdrawRequest
impl TypedRequest for WithdrawRequest
Auto Trait Implementations§
impl Freeze for WithdrawRequest
impl RefUnwindSafe for WithdrawRequest
impl Send for WithdrawRequest
impl Sync for WithdrawRequest
impl Unpin for WithdrawRequest
impl UnwindSafe for WithdrawRequest
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