[][src]Struct clircle::UnixIdentifier

pub struct UnixIdentifier {
    pub device: dev_t,
    pub inode: ino_t,
}

Implementation of Clircle for Unix.

Fields

device: dev_t

The st_dev of a FileStat (returned by the stat family of functions).

inode: ino_t

The st_ino of a FileStat (returned by the stat family of functions).

Trait Implementations

impl Clone for UnixIdentifier[src]

impl Copy for UnixIdentifier[src]

impl Debug for UnixIdentifier[src]

impl Eq for UnixIdentifier[src]

impl From<stat> for UnixIdentifier[src]

impl Hash for UnixIdentifier[src]

impl PartialEq<UnixIdentifier> for UnixIdentifier[src]

impl StructuralEq for UnixIdentifier[src]

impl StructuralPartialEq for UnixIdentifier[src]

impl<'a> TryFrom<&'a Path> for UnixIdentifier[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Stdio> for UnixIdentifier[src]

type Error = ClircleStdioError

The type returned in the event of a conversion error.

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> Clircle for T where
    T: Eq + TryFrom<Stdio> + for<'a> TryFrom<&'a Path>, 
[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.