[][src]Struct proc_mounts::SwapList

pub struct SwapList(pub Vec<SwapInfo>);

A list of parsed swap entries from /proc/swaps.

Methods

impl SwapList[src]

pub fn parse_from<'a, I: Iterator<Item = &'a str>>(lines: I) -> Result<SwapList>[src]

pub fn new() -> Result<SwapList>[src]

pub fn new_from_file<P: AsRef<Path>>(path: P) -> Result<SwapList>[src]

pub fn new_from_reader<R: BufRead>(reader: R) -> Result<SwapList>[src]

pub fn get_swapped(&self, path: &Path) -> bool[src]

Returns true if the given path is a entry in the swap list.

Trait Implementations

impl Clone for SwapList[src]

impl Eq for SwapList[src]

impl PartialEq<SwapList> for SwapList[src]

impl Debug for SwapList[src]

impl Hash for SwapList[src]

impl StructuralPartialEq for SwapList[src]

impl StructuralEq for SwapList[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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