[][src]Struct libc_interface::mntent

#[repr(C)]pub struct mntent {
    pub mnt_fsname: *mut c_char,
    pub mnt_dir: *mut c_char,
    pub mnt_type: *mut c_char,
    pub mnt_opts: *mut c_char,
    pub mnt_freq: c_int,
    pub mnt_passno: c_int,
}

Fields

mnt_fsname: *mut c_charmnt_dir: *mut c_charmnt_type: *mut c_charmnt_opts: *mut c_charmnt_freq: c_intmnt_passno: c_int

Trait Implementations

impl Clone for mntent[src]

impl Copy for mntent[src]

impl Debug for mntent[src]

impl Eq for mntent[src]

impl Hash for mntent[src]

impl PartialEq<mntent> for mntent[src]

impl StructuralEq for mntent[src]

impl StructuralPartialEq for mntent[src]

Auto Trait Implementations

impl !Send for mntent[src]

impl !Sync for mntent[src]

impl Unpin for mntent[src]

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.