Chip

Struct Chip 

Source
pub struct Chip { /* private fields */ }

Implementations§

Source§

impl Chip

Source

pub fn prefix(&self) -> &str

Source

pub fn address(&self) -> i32

Source

pub fn path(&self) -> &Path

Source

pub fn bus(&self) -> &BusId

Examples found in repository?
examples/simple.rs (line 11)
5fn main() {
6	let sensors = Sensors::new();
7	for chip in sensors {
8		println!(
9			"{} (on {})",
10			chip.get_name().unwrap(),
11			chip.bus().get_adapter_name().unwrap()
12		);
13		for feature in chip {
14			println!("  - {}", feature.get_label().unwrap());
15			for subfeature in feature {
16				println!(
17					"    - {} = {}",
18					subfeature.name(),
19					subfeature.get_value().unwrap()
20				);
21			}
22		}
23	}
24}
Source

pub fn get_name(&self) -> Result<String, LibsensorsError>

Return the chip name from its internal representation.

Examples found in repository?
examples/simple.rs (line 10)
5fn main() {
6	let sensors = Sensors::new();
7	for chip in sensors {
8		println!(
9			"{} (on {})",
10			chip.get_name().unwrap(),
11			chip.bus().get_adapter_name().unwrap()
12		);
13		for feature in chip {
14			println!("  - {}", feature.get_label().unwrap());
15			for subfeature in feature {
16				println!(
17					"    - {} = {}",
18					subfeature.name(),
19					subfeature.get_value().unwrap()
20				);
21			}
22		}
23	}
24}

Trait Implementations§

Source§

impl Debug for Chip

Source§

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

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

impl IntoIterator for Chip

Source§

type Item = Feature

The type of the elements being iterated over.
Source§

type IntoIter = FeatureIterator

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl Freeze for Chip

§

impl RefUnwindSafe for Chip

§

impl !Send for Chip

§

impl !Sync for Chip

§

impl Unpin for Chip

§

impl UnwindSafe for Chip

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