pub struct Counterfactual {
pub description: String,
pub alternative_action: TradingAction,
pub estimated_outcome: f64,
pub probability: f64,
}Fields§
§description: String§alternative_action: TradingAction§estimated_outcome: f64§probability: f64Trait Implementations§
Source§impl Clone for Counterfactual
impl Clone for Counterfactual
Source§fn clone(&self) -> Counterfactual
fn clone(&self) -> Counterfactual
Returns a duplicate 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 Counterfactual
impl Debug for Counterfactual
Source§impl<'de> Deserialize<'de> for Counterfactual
impl<'de> Deserialize<'de> for Counterfactual
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 Counterfactual
impl RefUnwindSafe for Counterfactual
impl Send for Counterfactual
impl Sync for Counterfactual
impl Unpin for Counterfactual
impl UnwindSafe for Counterfactual
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