[][src]Enum libuv::fs::FsType

pub enum FsType {
    ACCESS,
    CHMOD,
    CHOWN,
    CLOSE,
    CLOSEDIR,
    COPYFILE,
    CUSTOM,
    FCHMOD,
    FCHOWN,
    FDATASYNC,
    FSTAT,
    FSYNC,
    FTRUNCATE,
    FUTIME,
    LCHOWN,
    LINK,
    LSTAT,
    MKDIR,
    MKDTEMP,
    MKSTEMP,
    OPEN,
    OPENDIR,
    READ,
    READDIR,
    READLINK,
    REALPATH,
    RENAME,
    RMDIR,
    SCANDIR,
    SENDFILE,
    STAT,
    STATFS,
    SYMLINK,
    UNLINK,
    UTIME,
    WRITE,
    UNKNOWN,
}

Variants

ACCESS
CHMOD
CHOWN
CLOSE
CLOSEDIR
COPYFILE
CUSTOM
FCHMOD
FCHOWN
FDATASYNC
FSTAT
FSYNC
FTRUNCATE
FUTIME
LCHOWN
LSTAT
MKDIR
MKDTEMP
MKSTEMP
OPEN
OPENDIR
READ
READDIR
REALPATH
RENAME
RMDIR
SCANDIR
SENDFILE
STAT
STATFS
UTIME
WRITE
UNKNOWN

Trait Implementations

impl Clone for FsType[src]

impl Copy for FsType[src]

impl Debug for FsType[src]

impl Eq for FsType[src]

impl PartialEq<FsType> for FsType[src]

impl StructuralEq for FsType[src]

impl StructuralPartialEq for FsType[src]

Auto Trait Implementations

impl RefUnwindSafe for FsType

impl Send for FsType

impl Sync for FsType

impl Unpin for FsType

impl UnwindSafe for FsType

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.