pub struct Ferrix {Show 29 fields
pub current_page: Page,
pub proc_data: DataLoadingState<Processors>,
pub prev_proc_stat: DataLoadingState<Stat>,
pub curr_proc_stat: DataLoadingState<Stat>,
pub cpu_usage_chart: LineChart,
pub show_cpus_chart: HashSet<usize>,
pub show_chart_elements: usize,
pub cpu_freq: DataLoadingState<CpuFreq>,
pub cpu_vulnerabilities: DataLoadingState<Vulnerabilities>,
pub ram_data: DataLoadingState<RAM>,
pub swap_data: DataLoadingState<Swaps>,
pub show_mem_chart: HashSet<usize>,
pub show_ram_chart: bool,
pub ram_usage_chart: LineChart,
pub storages: DataLoadingState<Mounts>,
pub dmi_data: DataLoadingState<DMIData>,
pub bat_data: DataLoadingState<BatInfo>,
pub drm_data: DataLoadingState<Video>,
pub osrel_data: DataLoadingState<OsRelease>,
pub kernel_data: DataLoadingState<Kernel>,
pub kmods_data: DataLoadingState<KModules>,
pub users_list: DataLoadingState<Users>,
pub groups_list: DataLoadingState<Groups>,
pub sysd_services_list: DataLoadingState<SystemdServices>,
pub installed_pkgs_list: DataLoadingState<InstalledPackages>,
pub system: DataLoadingState<System>,
pub settings: FXSettings,
pub is_polkit: bool,
pub show_copy_toast: bool,
}Fields§
§current_page: Page§proc_data: DataLoadingState<Processors>§prev_proc_stat: DataLoadingState<Stat>§curr_proc_stat: DataLoadingState<Stat>§cpu_usage_chart: LineChart§show_cpus_chart: HashSet<usize>§show_chart_elements: usize§cpu_freq: DataLoadingState<CpuFreq>§cpu_vulnerabilities: DataLoadingState<Vulnerabilities>§ram_data: DataLoadingState<RAM>§swap_data: DataLoadingState<Swaps>§show_mem_chart: HashSet<usize>§show_ram_chart: bool§ram_usage_chart: LineChart§storages: DataLoadingState<Mounts>§dmi_data: DataLoadingState<DMIData>§bat_data: DataLoadingState<BatInfo>§drm_data: DataLoadingState<Video>§osrel_data: DataLoadingState<OsRelease>§kernel_data: DataLoadingState<Kernel>§kmods_data: DataLoadingState<KModules>§users_list: DataLoadingState<Users>§groups_list: DataLoadingState<Groups>§sysd_services_list: DataLoadingState<SystemdServices>§installed_pkgs_list: DataLoadingState<InstalledPackages>§system: DataLoadingState<System>§settings: FXSettings§is_polkit: bool§show_copy_toast: boolImplementations§
Source§impl Ferrix
impl Ferrix
pub fn subscription(&self) -> Subscription<Message>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Ferrix
impl !RefUnwindSafe for Ferrix
impl !Send for Ferrix
impl !Sync for Ferrix
impl Unpin for Ferrix
impl !UnwindSafe for Ferrix
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.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<State, Message> IntoBoot<State, Message> for State
impl<State, Message> IntoBoot<State, Message> for State
Source§fn into_boot(self) -> (State, Task<Message>)
fn into_boot(self) -> (State, Task<Message>)
Turns some type into the initial state of some
Application.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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().