Struct vergen::Sysinfo[][src]

pub struct Sysinfo { /* fields omitted */ }

Configuration for the VERGEN_SYSINFO_* instructions

Instructions

The following instructions can be generated:

InstructionDefault
cargo:rustc-env=VERGEN_SYSINFO_NAME=Darwin*
cargo:rustc-env=VERGEN_SYSINFO_OS_VERSION=MacOS 10.15.7 Catalina*
cargo:rustc-env=VERGEN_SYSINFO_USER=yoda*
cargo:rustc-env=VERGEN_SYSINFO_TOTAL_MEMORY=16 GB*
cargo:rustc-env=VERGEN_SYSINFO_CPU_VENDOR=Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz*
cargo:rustc-env=VERGEN_SYSINFO_CPU_CORE_COUNT=4*
  • If the name field is false, the VERGEN_SYSINFO_NAME instruction will not be generated.
  • If the os_version field is false, the VERGEN_SYSINFO_OS_VERSION instruction will not be generated.
  • If the user field is false, the VERGEN_SYSINFO_USER instruction will not be generated.
  • If the memory field is false, the VERGEN_SYSINFO_TOTAL_MEMORY instruction will not be generated.
  • If the cpu_vendor field is false, the VERGEN_SYSINFO_CPU_VENDOR instruction will not be generated.
  • If the cpu_core_count field is false, the VERGEN_SYSINFO_CPU_CORE_COUNT instruction will not be generated.

Example

use vergen::{vergen, Config};

let mut config = Config::default();
// Turn off the name instruction
*config.sysinfo_mut().name_mut() = false;

// Generate the instructions
vergen(config)?;

Implementations

impl Sysinfo[src]

pub fn name_mut(&mut self) -> &mut bool[src]

Enable/Disable the VERGEN_SYSINFO_NAME instruction

pub fn os_version_mut(&mut self) -> &mut bool[src]

Enable/Disable the VERGEN_SYSINFO_OS_VERSION instruction

pub fn user_mut(&mut self) -> &mut bool[src]

Enable/Disable the VERGEN_SYSINFO_USER instruction

pub fn memory_mut(&mut self) -> &mut bool[src]

Enable/Disable the VERGEN_SYSINFO_TOTAL_MEMORY instruction

pub fn cpu_vendor_mut(&mut self) -> &mut bool[src]

Enable/Disable the VERGEN_SYSINFO_CPU_VENDOR instruction

pub fn cpu_core_count_mut(&mut self) -> &mut bool[src]

Enable/Disable the VERGEN_SYSINFO_CPU_CORE_COUNT instruction

pub fn cpu_name_mut(&mut self) -> &mut bool[src]

Enable/Disable the VERGEN_SYSINFO_CPU_NAME instruction

pub fn cpu_brand_mut(&mut self) -> &mut bool[src]

Enable/Disable the VERGEN_SYSINFO_CPU_BRAND instruction

pub fn cpu_frequency_mut(&mut self) -> &mut bool[src]

Enable/Disable the VERGEN_SYSINFO_CPU_FREQUENCY instruction

Trait Implementations

impl Clone for Sysinfo[src]

impl Copy for Sysinfo[src]

impl Debug for Sysinfo[src]

impl Default for Sysinfo[src]

Auto Trait Implementations

impl RefUnwindSafe for Sysinfo

impl Send for Sysinfo

impl Sync for Sysinfo

impl Unpin for Sysinfo

impl UnwindSafe for Sysinfo

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.