pub struct GetDeliveryPriceParams {
pub category: Category,
pub symbol: Option<String>,
pub base_coin: Option<String>,
pub limit: Option<u32>,
pub cursor: Option<String>,
}Expand description
Parameters for getting delivery price.
Fields§
§category: CategoryProduct category.
symbol: Option<String>Trading symbol (optional).
base_coin: Option<String>Base coin filter.
limit: Option<u32>Limit.
cursor: Option<String>Cursor for pagination.
Implementations§
Trait Implementations§
Source§impl Clone for GetDeliveryPriceParams
impl Clone for GetDeliveryPriceParams
Source§fn clone(&self) -> GetDeliveryPriceParams
fn clone(&self) -> GetDeliveryPriceParams
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 GetDeliveryPriceParams
impl Debug for GetDeliveryPriceParams
Auto Trait Implementations§
impl Freeze for GetDeliveryPriceParams
impl RefUnwindSafe for GetDeliveryPriceParams
impl Send for GetDeliveryPriceParams
impl Sync for GetDeliveryPriceParams
impl Unpin for GetDeliveryPriceParams
impl UnwindSafe for GetDeliveryPriceParams
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