pub struct AssetSummary {
pub symbol: String,
pub regime: MarketRegime,
pub strategy: ActiveStrategy,
pub regime_changes: u32,
pub is_ready: bool,
}Expand description
Summary of an asset’s regime state
Fields§
§symbol: String§regime: MarketRegime§strategy: ActiveStrategy§regime_changes: u32§is_ready: boolTrait Implementations§
Source§impl Clone for AssetSummary
impl Clone for AssetSummary
Source§fn clone(&self) -> AssetSummary
fn clone(&self) -> AssetSummary
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 AssetSummary
impl Debug for AssetSummary
Source§impl<'de> Deserialize<'de> for AssetSummary
impl<'de> Deserialize<'de> for AssetSummary
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
Source§impl Display for AssetSummary
impl Display for AssetSummary
Auto Trait Implementations§
impl Freeze for AssetSummary
impl RefUnwindSafe for AssetSummary
impl Send for AssetSummary
impl Sync for AssetSummary
impl Unpin for AssetSummary
impl UnsafeUnpin for AssetSummary
impl UnwindSafe for AssetSummary
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