pub struct V2Today {
pub trades: Option<u32>,
pub wins: Option<u32>,
pub pnl: Option<f64>,
pub streak: Option<i32>,
pub sizing_mult: Option<f64>,
pub extra: BTreeMap<String, Value>,
}Expand description
Today-summary sub-object on /v2/status.
Fields§
§trades: Option<u32>§wins: Option<u32>§pnl: Option<f64>§streak: Option<i32>§sizing_mult: Option<f64>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl<'de> Deserialize<'de> for V2Today
impl<'de> Deserialize<'de> for V2Today
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 V2Today
impl RefUnwindSafe for V2Today
impl Send for V2Today
impl Sync for V2Today
impl Unpin for V2Today
impl UnsafeUnpin for V2Today
impl UnwindSafe for V2Today
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