#[non_exhaustive]pub struct SpotOrderQuery {
pub symbol: Symbol,
pub key: OrderKey,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.symbol: Symbol§key: OrderKeyImplementations§
Trait Implementations§
Source§impl Clone for SpotOrderQuery
impl Clone for SpotOrderQuery
Source§fn clone(&self) -> SpotOrderQuery
fn clone(&self) -> SpotOrderQuery
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 SpotOrderQuery
impl Debug for SpotOrderQuery
Source§impl PartialEq for SpotOrderQuery
impl PartialEq for SpotOrderQuery
Source§fn eq(&self, other: &SpotOrderQuery) -> bool
fn eq(&self, other: &SpotOrderQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SpotOrderQuery
impl StructuralPartialEq for SpotOrderQuery
Auto Trait Implementations§
impl Freeze for SpotOrderQuery
impl RefUnwindSafe for SpotOrderQuery
impl Send for SpotOrderQuery
impl Sync for SpotOrderQuery
impl Unpin for SpotOrderQuery
impl UnsafeUnpin for SpotOrderQuery
impl UnwindSafe for SpotOrderQuery
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