pub struct ExitMarketInfo<'a> {
pub index: i32,
pub current_price: f64,
pub index_in: i32,
pub price_in: f64,
pub holding: f64,
pub inmarket: f64,
pub data: &'a Vec<Vec<f64>>,
pub diff: f64,
}
Fields§
§index: i32
§current_price: f64
§index_in: i32
§price_in: f64
§holding: f64
§inmarket: f64
§data: &'a Vec<Vec<f64>>
§diff: f64
Trait Implementations§
Source§impl<'a> Debug for ExitMarketInfo<'a>
impl<'a> Debug for ExitMarketInfo<'a>
Auto Trait Implementations§
impl<'a> Freeze for ExitMarketInfo<'a>
impl<'a> RefUnwindSafe for ExitMarketInfo<'a>
impl<'a> Send for ExitMarketInfo<'a>
impl<'a> Sync for ExitMarketInfo<'a>
impl<'a> Unpin for ExitMarketInfo<'a>
impl<'a> UnwindSafe for ExitMarketInfo<'a>
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