pub struct SessionPnlConfig {
pub loss_limit: f64,
}Expand description
Configuration for SessionPnl.
Fields§
§loss_limit: f64Per-session net loss ceiling in quote currency (negative number, e.g. -50.0 USDT). When net PnL drops to or below this value, the session is halted until the next 00:00 UTC rollover.
Set to f64::NEG_INFINITY to disable the halt entirely.
Trait Implementations§
Source§impl Clone for SessionPnlConfig
impl Clone for SessionPnlConfig
Source§fn clone(&self) -> SessionPnlConfig
fn clone(&self) -> SessionPnlConfig
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 SessionPnlConfig
impl Debug for SessionPnlConfig
Source§impl Default for SessionPnlConfig
impl Default for SessionPnlConfig
Source§impl<'de> Deserialize<'de> for SessionPnlConfig
impl<'de> Deserialize<'de> for SessionPnlConfig
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 SessionPnlConfig
impl RefUnwindSafe for SessionPnlConfig
impl Send for SessionPnlConfig
impl Sync for SessionPnlConfig
impl Unpin for SessionPnlConfig
impl UnsafeUnpin for SessionPnlConfig
impl UnwindSafe for SessionPnlConfig
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