Struct linux_info::storage::PartitionEntry[][src]

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

Implementations

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

pub fn values(&self) -> impl Iterator<Item = &'a str>[src]

returns every key and valu ein the cpu info

pub fn major(&self) -> Option<usize>[src]

Returns the major value.

pub fn minor(&self) -> Option<usize>[src]

Returns the minor value.

pub fn blocks(&self) -> Option<usize>[src]

Returns the blocks value.

pub fn name(&self) -> Option<&'a str>[src]

Returns the name value.

Trait Implementations

impl<'a> Clone for PartitionEntry<'a>[src]

impl<'a> Debug for PartitionEntry<'a>[src]

impl<'a> Eq for PartitionEntry<'a>[src]

impl<'a> PartialEq<PartitionEntry<'a>> for PartitionEntry<'a>[src]

impl<'a> StructuralEq for PartitionEntry<'a>[src]

impl<'a> StructuralPartialEq for PartitionEntry<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for PartitionEntry<'a>

impl<'a> Send for PartitionEntry<'a>

impl<'a> Sync for PartitionEntry<'a>

impl<'a> Unpin for PartitionEntry<'a>

impl<'a> UnwindSafe for PartitionEntry<'a>

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