pub struct TradeActionOut {
pub index_in: i32,
pub price_in: f64,
pub amt: i32,
pub index_out: i32,
pub price_out: f64,
pub diff: f64,
}
Fields§
§index_in: i32
§price_in: f64
§amt: i32
§index_out: i32
§price_out: f64
§diff: f64
Trait Implementations§
Source§impl Clone for TradeActionOut
impl Clone for TradeActionOut
Source§fn clone(&self) -> TradeActionOut
fn clone(&self) -> TradeActionOut
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 TradeActionOut
impl Debug for TradeActionOut
Auto Trait Implementations§
impl Freeze for TradeActionOut
impl RefUnwindSafe for TradeActionOut
impl Send for TradeActionOut
impl Sync for TradeActionOut
impl Unpin for TradeActionOut
impl UnwindSafe for TradeActionOut
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