[][src]Struct gcsf::NullFS

pub struct NullFS;

An empty FUSE file system. It can be used in a mounting test aimed to determine whether or not the real file system can be mounted as well. If the test fails, the application can fail early instead of wasting time constructing the real file system.

Trait Implementations

impl Filesystem for NullFS[src]

Auto Trait Implementations

impl RefUnwindSafe for NullFS

impl Send for NullFS

impl Sync for NullFS

impl Unpin for NullFS

impl UnwindSafe for NullFS

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.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,