Struct FFOptionsModules

Source
#[repr(C)]
pub struct FFOptionsModules {
Show 73 fields pub battery: FFBatteryOptions, pub bios: FFBiosOptions, pub bluetooth: FFBluetoothOptions, pub bluetoothRadio: FFBluetoothRadioOptions, pub board: FFBoardOptions, pub bootmgr: FFBootmgrOptions, pub break_: FFBreakOptions, pub brightness: FFBrightnessOptions, pub btrfs: FFBtrfsOptions, pub cpu: FFCPUOptions, pub cpuCache: FFCPUCacheOptions, pub cpuUsage: FFCPUUsageOptions, pub camera: FFCameraOptions, pub chassis: FFChassisOptions, pub colors: FFColorsOptions, pub command: FFCommandOptions, pub cursor: FFCursorOptions, pub custom: FFCustomOptions, pub de: FFDEOptions, pub dateTime: FFDateTimeOptions, pub disk: FFDiskOptions, pub diskIo: FFDiskIOOptions, pub display: FFDisplayOptions, pub dns: FFDNSOptions, pub editor: FFEditorOptions, pub font: FFFontOptions, pub gpu: FFGPUOptions, pub gamepad: FFGamepadOptions, pub host: FFHostOptions, pub icons: FFIconsOptions, pub initSystem: FFInitSystemOptions, pub kernel: FFKernelOptions, pub keyboard: FFKeyboardOptions, pub lm: FFLMOptions, pub loadavg: FFLoadavgOptions, pub localIP: FFLocalIpOptions, pub locale: FFLocaleOptions, pub media: FFMediaOptions, pub memory: FFMemoryOptions, pub monitor: FFMonitorOptions, pub mouse: FFMouseOptions, pub netIo: FFNetIOOptions, pub os: FFOSOptions, pub openCL: FFOpenCLOptions, pub openGL: FFOpenGLOptions, pub packages: FFPackagesOptions, pub physicalDisk: FFPhysicalDiskOptions, pub physicalMemory: FFPhysicalMemoryOptions, pub player: FFPlayerOptions, pub powerAdapter: FFPowerAdapterOptions, pub processes: FFProcessesOptions, pub publicIP: FFPublicIpOptions, pub separator: FFSeparatorOptions, pub shell: FFShellOptions, pub sound: FFSoundOptions, pub swap: FFSwapOptions, pub terminal: FFTerminalOptions, pub terminalFont: FFTerminalFontOptions, pub terminalSize: FFTerminalSizeOptions, pub terminalTheme: FFTerminalThemeOptions, pub theme: FFThemeOptions, pub title: FFTitleOptions, pub tpm: FFTPMOptions, pub uptime: FFUptimeOptions, pub users: FFUsersOptions, pub version: FFVersionOptions, pub vulkan: FFVulkanOptions, pub wm: FFWMOptions, pub wmTheme: FFWMThemeOptions, pub wallpaper: FFWallpaperOptions, pub weather: FFWeatherOptions, pub wifi: FFWifiOptions, pub zpool: FFZpoolOptions,
}

Fields§

§battery: FFBatteryOptions§bios: FFBiosOptions§bluetooth: FFBluetoothOptions§bluetoothRadio: FFBluetoothRadioOptions§board: FFBoardOptions§bootmgr: FFBootmgrOptions§break_: FFBreakOptions§brightness: FFBrightnessOptions§btrfs: FFBtrfsOptions§cpu: FFCPUOptions§cpuCache: FFCPUCacheOptions§cpuUsage: FFCPUUsageOptions§camera: FFCameraOptions§chassis: FFChassisOptions§colors: FFColorsOptions§command: FFCommandOptions§cursor: FFCursorOptions§custom: FFCustomOptions§de: FFDEOptions§dateTime: FFDateTimeOptions§disk: FFDiskOptions§diskIo: FFDiskIOOptions§display: FFDisplayOptions§dns: FFDNSOptions§editor: FFEditorOptions§font: FFFontOptions§gpu: FFGPUOptions§gamepad: FFGamepadOptions§host: FFHostOptions§icons: FFIconsOptions§initSystem: FFInitSystemOptions§kernel: FFKernelOptions§keyboard: FFKeyboardOptions§lm: FFLMOptions§loadavg: FFLoadavgOptions§localIP: FFLocalIpOptions§locale: FFLocaleOptions§media: FFMediaOptions§memory: FFMemoryOptions§monitor: FFMonitorOptions§mouse: FFMouseOptions§netIo: FFNetIOOptions§os: FFOSOptions§openCL: FFOpenCLOptions§openGL: FFOpenGLOptions§packages: FFPackagesOptions§physicalDisk: FFPhysicalDiskOptions§physicalMemory: FFPhysicalMemoryOptions§player: FFPlayerOptions§powerAdapter: FFPowerAdapterOptions§processes: FFProcessesOptions§publicIP: FFPublicIpOptions§separator: FFSeparatorOptions§shell: FFShellOptions§sound: FFSoundOptions§swap: FFSwapOptions§terminal: FFTerminalOptions§terminalFont: FFTerminalFontOptions§terminalSize: FFTerminalSizeOptions§terminalTheme: FFTerminalThemeOptions§theme: FFThemeOptions§title: FFTitleOptions§tpm: FFTPMOptions§uptime: FFUptimeOptions§users: FFUsersOptions§version: FFVersionOptions§vulkan: FFVulkanOptions§wm: FFWMOptions§wmTheme: FFWMThemeOptions§wallpaper: FFWallpaperOptions§weather: FFWeatherOptions§wifi: FFWifiOptions§zpool: FFZpoolOptions

Trait Implementations§

Source§

impl Clone for FFOptionsModules

Source§

fn clone(&self) -> FFOptionsModules

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for FFOptionsModules

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for FFOptionsModules

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.