pub struct Trade<K> {
pub buy_key: K,
pub sell_key: K,
pub price: f64,
pub volume: f64,
}Fields§
§buy_key: K§sell_key: K§price: f64§volume: f64Trait Implementations§
Auto Trait Implementations§
impl<K> Freeze for Trade<K>where
K: Freeze,
impl<K> RefUnwindSafe for Trade<K>where
K: RefUnwindSafe,
impl<K> Send for Trade<K>where
K: Send,
impl<K> Sync for Trade<K>where
K: Sync,
impl<K> Unpin for Trade<K>where
K: Unpin,
impl<K> UnwindSafe for Trade<K>where
K: UnwindSafe,
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