pub struct State {Show 20 fields
pub table: TableState<Function>,
pub current_function: Option<String>,
pub current_version: Option<String>,
pub current_alias: Option<String>,
pub detail_tab: DetailTab,
pub function_visible_column_ids: Vec<ColumnId>,
pub function_column_ids: Vec<ColumnId>,
pub version_table: TableState<Version>,
pub version_visible_column_ids: Vec<String>,
pub version_column_ids: Vec<String>,
pub alias_table: TableState<Alias>,
pub alias_visible_column_ids: Vec<String>,
pub alias_column_ids: Vec<String>,
pub layer_visible_column_ids: Vec<String>,
pub layer_column_ids: Vec<String>,
pub input_focus: InputFocus,
pub version_input_focus: InputFocus,
pub alias_input_focus: InputFocus,
pub layer_selected: usize,
pub layer_expanded: Option<usize>,
}Fields§
§table: TableState<Function>§current_function: Option<String>§current_version: Option<String>§current_alias: Option<String>§detail_tab: DetailTab§function_visible_column_ids: Vec<ColumnId>§function_column_ids: Vec<ColumnId>§version_table: TableState<Version>§version_visible_column_ids: Vec<String>§version_column_ids: Vec<String>§alias_table: TableState<Alias>§alias_visible_column_ids: Vec<String>§alias_column_ids: Vec<String>§layer_visible_column_ids: Vec<String>§layer_column_ids: Vec<String>§input_focus: InputFocus§version_input_focus: InputFocus§alias_input_focus: InputFocus§layer_selected: usize§layer_expanded: Option<usize>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for State
impl RefUnwindSafe for State
impl Send for State
impl Sync for State
impl Unpin for State
impl UnwindSafe for State
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> 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 moreCreates a shared type from an unshared type.