pub struct State {Show 20 fields
pub table: TableState<Stack>,
pub input_focus: InputFocus,
pub status_filter: StatusFilter,
pub view_nested: bool,
pub current_stack: Option<String>,
pub detail_tab: DetailTab,
pub overview_scroll: u16,
pub sort_column: Column,
pub sort_direction: SortDirection,
pub template_body: String,
pub template_scroll: usize,
pub parameters: TableState<StackParameter>,
pub parameters_input_focus: InputFocus,
pub outputs: TableState<StackOutput>,
pub outputs_input_focus: InputFocus,
pub tags: TableState<(String, String)>,
pub policy_scroll: usize,
pub expanded_items: HashSet<String>,
pub resources: TableState<StackResource>,
pub resources_input_focus: InputFocus,
}Fields§
§table: TableState<Stack>§input_focus: InputFocus§status_filter: StatusFilter§view_nested: bool§current_stack: Option<String>§detail_tab: DetailTab§overview_scroll: u16§sort_column: Column§sort_direction: SortDirection§template_body: String§template_scroll: usize§parameters: TableState<StackParameter>§parameters_input_focus: InputFocus§outputs: TableState<StackOutput>§outputs_input_focus: InputFocus§policy_scroll: usize§expanded_items: HashSet<String>Tracks expanded items for hierarchical views (Resources, Events tabs). Keys are resource IDs or logical resource names that are currently expanded.
resources: TableState<StackResource>§resources_input_focus: InputFocusImplementations§
Source§impl State
impl State
pub const FILTER_CONTROLS: [InputFocus; 4]
pub const PARAMETERS_FILTER_CONTROLS: [InputFocus; 2]
pub const OUTPUTS_FILTER_CONTROLS: [InputFocus; 2]
pub const RESOURCES_FILTER_CONTROLS: [InputFocus; 2]
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 UnsafeUnpin 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.