pub struct StrategyGroupSummary {
pub id: String,
pub name: String,
pub symbol: String,
pub is_active: bool,
pub trading_mode: String,
pub today_pnl: f64,
pub agent_loop_status: String,
}Fields§
§id: String§name: String§symbol: String§is_active: bool§trading_mode: String§today_pnl: f64§agent_loop_status: StringTrait Implementations§
Source§impl Clone for StrategyGroupSummary
impl Clone for StrategyGroupSummary
Source§fn clone(&self) -> StrategyGroupSummary
fn clone(&self) -> StrategyGroupSummary
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 StrategyGroupSummary
impl Debug for StrategyGroupSummary
Source§impl<'de> Deserialize<'de> for StrategyGroupSummary
impl<'de> Deserialize<'de> for StrategyGroupSummary
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 StrategyGroupSummary
impl RefUnwindSafe for StrategyGroupSummary
impl Send for StrategyGroupSummary
impl Sync for StrategyGroupSummary
impl Unpin for StrategyGroupSummary
impl UnsafeUnpin for StrategyGroupSummary
impl UnwindSafe for StrategyGroupSummary
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