pub struct WithdrawalHistoryRequest<'a> { /* private fields */ }Expand description
Query parameters for Funding::get_withdrawal_history.
Implementations§
Source§impl<'a> WithdrawalHistoryRequest<'a>
impl<'a> WithdrawalHistoryRequest<'a>
Sourcepub fn withdrawal_id(self, wd_id: impl Into<Cow<'a, str>>) -> Self
pub fn withdrawal_id(self, wd_id: impl Into<Cow<'a, str>>) -> Self
Filter by withdrawal ID.
Sourcepub fn withdrawal_type(self, withdrawal_type: impl Into<Cow<'a, str>>) -> Self
pub fn withdrawal_type(self, withdrawal_type: impl Into<Cow<'a, str>>) -> Self
Filter by withdrawal type.
Sourcepub fn to_addr_type(self, to_addr_type: impl Into<Cow<'a, str>>) -> Self
pub fn to_addr_type(self, to_addr_type: impl Into<Cow<'a, str>>) -> Self
Filter by destination address type.
Trait Implementations§
Source§impl<'a> Clone for WithdrawalHistoryRequest<'a>
impl<'a> Clone for WithdrawalHistoryRequest<'a>
Source§fn clone(&self) -> WithdrawalHistoryRequest<'a>
fn clone(&self) -> WithdrawalHistoryRequest<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for WithdrawalHistoryRequest<'a>
impl<'a> Debug for WithdrawalHistoryRequest<'a>
Source§impl<'a> Default for WithdrawalHistoryRequest<'a>
impl<'a> Default for WithdrawalHistoryRequest<'a>
Source§fn default() -> WithdrawalHistoryRequest<'a>
fn default() -> WithdrawalHistoryRequest<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for WithdrawalHistoryRequest<'a>
impl<'a> RefUnwindSafe for WithdrawalHistoryRequest<'a>
impl<'a> Send for WithdrawalHistoryRequest<'a>
impl<'a> Sync for WithdrawalHistoryRequest<'a>
impl<'a> Unpin for WithdrawalHistoryRequest<'a>
impl<'a> UnsafeUnpin for WithdrawalHistoryRequest<'a>
impl<'a> UnwindSafe for WithdrawalHistoryRequest<'a>
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