[][src]Enum monotron_api::FileType

#[repr(C)]
pub enum FileType {
    File,
    Directory,
    BlockDevice,
    CharDevice,
}

Describes the sort of files you will find in the system-wide virtual filesystem. Some exist on disk, and some do not.

Variants

File

A regular file

Directory

A directory contains other files and directories

BlockDevice

A device you can read/write a block (e.g. 512 bytes) at a time

CharDevice

A device you can read/write one or more bytes at a time

Trait Implementations

impl Debug for FileType[src]

impl PartialEq<FileType> for FileType[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Eq for FileType[src]

impl Copy for FileType[src]

impl Clone for FileType[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for FileType

impl Send for FileType

impl Sync for FileType

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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]