pub struct State {Show 21 fields
pub query_language: QueryLanguage,
pub query_text: String,
pub query_cursor_line: usize,
pub query_cursor_col: usize,
pub log_group_search: String,
pub selected_log_groups: Vec<String>,
pub log_group_matches: Vec<String>,
pub show_dropdown: bool,
pub dropdown_selected: usize,
pub insights_start_time: Option<i64>,
pub insights_end_time: Option<i64>,
pub insights_date_range_type: DateRangeType,
pub insights_relative_amount: String,
pub insights_relative_unit: TimeUnit,
pub insights_focus: InsightsFocus,
pub query_completed: bool,
pub query_results: Vec<Vec<(String, String)>>,
pub results_selected: usize,
pub expanded_result: Option<usize>,
pub results_horizontal_scroll: usize,
pub results_vertical_scroll: usize,
}Fields§
§query_language: QueryLanguage§query_text: String§query_cursor_line: usize§query_cursor_col: usize§log_group_search: String§selected_log_groups: Vec<String>§log_group_matches: Vec<String>§show_dropdown: bool§dropdown_selected: usize§insights_start_time: Option<i64>§insights_end_time: Option<i64>§insights_date_range_type: DateRangeType§insights_relative_amount: String§insights_relative_unit: TimeUnit§insights_focus: InsightsFocus§query_completed: bool§query_results: Vec<Vec<(String, String)>>§results_selected: usize§expanded_result: Option<usize>§results_horizontal_scroll: usize§results_vertical_scroll: usizeTrait 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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.