pub struct GetFeeRateParams {
pub category: Category,
pub symbol: Option<String>,
pub base_coin: Option<String>,
}Expand description
Query params for Client::get_fee_rate.
Fields§
§category: Category§symbol: Option<String>§base_coin: Option<String>Only for category = option. Base coin, e.g. "BTC".
Trait Implementations§
Source§impl Clone for GetFeeRateParams
impl Clone for GetFeeRateParams
Source§fn clone(&self) -> GetFeeRateParams
fn clone(&self) -> GetFeeRateParams
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 Debug for GetFeeRateParams
impl Debug for GetFeeRateParams
Auto Trait Implementations§
impl Freeze for GetFeeRateParams
impl RefUnwindSafe for GetFeeRateParams
impl Send for GetFeeRateParams
impl Sync for GetFeeRateParams
impl Unpin for GetFeeRateParams
impl UnsafeUnpin for GetFeeRateParams
impl UnwindSafe for GetFeeRateParams
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