pub struct ViewState {Show 14 fields
pub is_grid_open: bool,
pub selected_grid_tab: GridTab,
pub selected_symbol_index: usize,
pub selected_strategy_index: usize,
pub is_on_panel_selected: bool,
pub is_symbol_selector_open: bool,
pub selected_symbol_selector_index: usize,
pub is_strategy_selector_open: bool,
pub selected_strategy_selector_index: usize,
pub is_account_popup_open: bool,
pub is_history_popup_open: bool,
pub is_focus_popup_open: bool,
pub is_close_all_confirm_open: bool,
pub is_strategy_editor_open: bool,
}Fields§
§is_grid_open: bool§selected_grid_tab: GridTab§selected_symbol_index: usize§selected_strategy_index: usize§is_on_panel_selected: bool§is_symbol_selector_open: bool§selected_symbol_selector_index: usize§is_strategy_selector_open: bool§selected_strategy_selector_index: usize§is_account_popup_open: bool§is_history_popup_open: bool§is_focus_popup_open: bool§is_close_all_confirm_open: bool§is_strategy_editor_open: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for ViewState
impl RefUnwindSafe for ViewState
impl Send for ViewState
impl Sync for ViewState
impl Unpin for ViewState
impl UnsafeUnpin for ViewState
impl UnwindSafe for ViewState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more