Struct smbioslib::SMBiosElectricalCurrentProbe[][src]

pub struct SMBiosElectricalCurrentProbe<'a> { /* fields omitted */ }

Electrical Current Probe (Type 29)

This structure describes the attributes for an electrical current probe in the system. Each structure describes a single electrical current probe.

Compliant with: DMTF SMBIOS Reference Specification 3.4.0 (DSP0134) Document Date: 2020-07-17

Implementations

impl<'a> SMBiosElectricalCurrentProbe<'a>[src]

pub fn description(&self) -> Option<String>[src]

A string that contains additional descriptive information about the probe or its location

pub fn location_and_status(&self) -> Option<CurrentProbeLocationAndStatus>[src]

Probe’s physical location and status of the current monitored by this current probe

pub fn maximum_value(&self) -> Option<u16>[src]

Maximum current level readable by this probe, in milliamps

pub fn minimum_value(&self) -> Option<u16>[src]

Minimum temperature level readable by this probe, in milliamps

pub fn resolution(&self) -> Option<u16>[src]

Resolution for the probe’s reading, in tenths of milliamps

pub fn tolerance(&self) -> Option<u16>[src]

Tolerance for reading from this probe, in plus/minus milliamps

pub fn accuracy(&self) -> Option<u16>[src]

Accuracy for reading from this probe, in plus/minus 1/100th of a percent

pub fn oem_defined(&self) -> Option<u32>[src]

OEM- or BIOS vendor-specific information.

pub fn nominal_value(&self) -> Option<u16>[src]

Nominal value for the probe’s reading in milliamps

Trait Implementations

impl Debug for SMBiosElectricalCurrentProbe<'_>[src]

impl<'a> SMBiosStruct<'a> for SMBiosElectricalCurrentProbe<'a>[src]

Auto Trait Implementations

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