pub struct OrderPriceLimitResult {
pub category: Option<String>,
pub symbol: Option<String>,
pub buy_lmt: Option<String>,
pub sell_lmt: Option<String>,
pub ts: Option<String>,
}Expand description
Order price limit result wrapper.
Fields§
§category: Option<String>§symbol: Option<String>§buy_lmt: Option<String>§sell_lmt: Option<String>§ts: Option<String>Trait Implementations§
Source§impl Clone for OrderPriceLimitResult
impl Clone for OrderPriceLimitResult
Source§fn clone(&self) -> OrderPriceLimitResult
fn clone(&self) -> OrderPriceLimitResult
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 OrderPriceLimitResult
impl Debug for OrderPriceLimitResult
Source§impl<'de> Deserialize<'de> for OrderPriceLimitResult
impl<'de> Deserialize<'de> for OrderPriceLimitResult
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
Auto Trait Implementations§
impl Freeze for OrderPriceLimitResult
impl RefUnwindSafe for OrderPriceLimitResult
impl Send for OrderPriceLimitResult
impl Sync for OrderPriceLimitResult
impl Unpin for OrderPriceLimitResult
impl UnsafeUnpin for OrderPriceLimitResult
impl UnwindSafe for OrderPriceLimitResult
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