pub struct GetDepthV1Params {
pub symbol: String,
pub limit: Option<i32>,
}Expand description
struct for passing parameters to the method get_depth_v1
Fields§
§symbol: StringOption trading pair, e.g BTC-200730-9000-C
limit: Option<i32>Default:100 Max:1000.Optional value:[10, 20, 50, 100, 500, 1000]
Trait Implementations§
Source§impl Clone for GetDepthV1Params
impl Clone for GetDepthV1Params
Source§fn clone(&self) -> GetDepthV1Params
fn clone(&self) -> GetDepthV1Params
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 GetDepthV1Params
impl Debug for GetDepthV1Params
Source§impl Default for GetDepthV1Params
impl Default for GetDepthV1Params
Source§fn default() -> GetDepthV1Params
fn default() -> GetDepthV1Params
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetDepthV1Params
impl RefUnwindSafe for GetDepthV1Params
impl Send for GetDepthV1Params
impl Sync for GetDepthV1Params
impl Unpin for GetDepthV1Params
impl UnwindSafe for GetDepthV1Params
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