Struct vergen::RefreshKind

source ·
pub struct RefreshKind { /* private fields */ }
Available on crate feature si only.
Expand description

Used to determine what you want to refresh specifically on the System type.

⚠️ Just like all other refresh types, ruling out a refresh doesn’t assure you that the information won’t be retrieved if the information is accessible without needing extra computation.

use sysinfo::{RefreshKind, System};

// We want everything except memory.
let mut system = System::new_with_specifics(RefreshKind::everything().without_memory());

assert_eq!(system.total_memory(), 0);
assert!(system.processes().len() > 0);

Implementations§

source§

impl RefreshKind

source

pub fn new() -> RefreshKind

Creates a new RefreshKind with every refresh set to false/None.

use sysinfo::RefreshKind;

let r = RefreshKind::new();

assert_eq!(r.processes().is_some(), false);
assert_eq!(r.memory().is_some(), false);
assert_eq!(r.cpu().is_some(), false);
source

pub fn everything() -> RefreshKind

Creates a new RefreshKind with every refresh set to true/Some(...).

use sysinfo::RefreshKind;

let r = RefreshKind::everything();

assert_eq!(r.processes().is_some(), true);
assert_eq!(r.memory().is_some(), true);
assert_eq!(r.cpu().is_some(), true);
source

pub fn processes(&self) -> Option<ProcessRefreshKind>

Returns the value of the “processes” refresh kind.

use sysinfo::{RefreshKind, ProcessRefreshKind};

let r = RefreshKind::new();
assert_eq!(r.processes().is_some(), false);

let r = r.with_processes(ProcessRefreshKind::everything());
assert_eq!(r.processes().is_some(), true);

let r = r.without_processes();
assert_eq!(r.processes().is_some(), false);
source

pub fn with_processes(self, kind: ProcessRefreshKind) -> RefreshKind

Sets the value of the “processes” refresh kind to Some(...).

use sysinfo::{RefreshKind, ProcessRefreshKind};

let r = RefreshKind::new();
assert_eq!(r.processes().is_some(), false);

let r = r.with_processes(ProcessRefreshKind::everything());
assert_eq!(r.processes().is_some(), true);
source

pub fn without_processes(self) -> RefreshKind

Sets the value of the “processes” refresh kind to None.

use sysinfo::RefreshKind;

let r = RefreshKind::everything();
assert_eq!(r.processes().is_some(), true);

let r = r.without_processes();
assert_eq!(r.processes().is_some(), false);
source

pub fn memory(&self) -> Option<MemoryRefreshKind>

Returns the value of the “memory” refresh kind.

use sysinfo::{RefreshKind, MemoryRefreshKind};

let r = RefreshKind::new();
assert_eq!(r.memory().is_some(), false);

let r = r.with_memory(MemoryRefreshKind::everything());
assert_eq!(r.memory().is_some(), true);

let r = r.without_memory();
assert_eq!(r.memory().is_some(), false);
source

pub fn with_memory(self, kind: MemoryRefreshKind) -> RefreshKind

Sets the value of the “memory” refresh kind to Some(...).

use sysinfo::{RefreshKind, MemoryRefreshKind};

let r = RefreshKind::new();
assert_eq!(r.memory().is_some(), false);

let r = r.with_memory(MemoryRefreshKind::everything());
assert_eq!(r.memory().is_some(), true);
source

pub fn without_memory(self) -> RefreshKind

Sets the value of the “memory” refresh kind to None.

use sysinfo::RefreshKind;

let r = RefreshKind::everything();
assert_eq!(r.memory().is_some(), true);

let r = r.without_memory();
assert_eq!(r.memory().is_some(), false);
source

pub fn cpu(&self) -> Option<CpuRefreshKind>

Returns the value of the “cpu” refresh kind.

use sysinfo::{RefreshKind, CpuRefreshKind};

let r = RefreshKind::new();
assert_eq!(r.cpu().is_some(), false);

let r = r.with_cpu(CpuRefreshKind::everything());
assert_eq!(r.cpu().is_some(), true);

let r = r.without_cpu();
assert_eq!(r.cpu().is_some(), false);
source

pub fn with_cpu(self, kind: CpuRefreshKind) -> RefreshKind

Sets the value of the “cpu” refresh kind to Some(...).

use sysinfo::{RefreshKind, CpuRefreshKind};

let r = RefreshKind::new();
assert_eq!(r.cpu().is_some(), false);

let r = r.with_cpu(CpuRefreshKind::everything());
assert_eq!(r.cpu().is_some(), true);
source

pub fn without_cpu(self) -> RefreshKind

Sets the value of the “cpu” refresh kind to None.

use sysinfo::RefreshKind;

let r = RefreshKind::everything();
assert_eq!(r.cpu().is_some(), true);

let r = r.without_cpu();
assert_eq!(r.cpu().is_some(), false);

Trait Implementations§

source§

impl Clone for RefreshKind

source§

fn clone(&self) -> RefreshKind

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 RefreshKind

source§

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

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

impl Default for RefreshKind

source§

fn default() -> RefreshKind

Returns the “default value” for a type. Read more
source§

impl PartialEq for RefreshKind

source§

fn eq(&self, other: &RefreshKind) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for RefreshKind

source§

impl Eq for RefreshKind

source§

impl StructuralEq for RefreshKind

source§

impl StructuralPartialEq for RefreshKind

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> 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,

§

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>,

§

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>,

§

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.