Struct grebedb::vfs::OsVfs[][src]

pub struct OsVfs { /* fields omitted */ }

Interface to a real file system on disk.

Implementations

impl OsVfs[src]

pub fn new<P>(root: P) -> Self where
    P: Into<PathBuf>, 
[src]

Create a file system interface to the given path.

The given path is treated as the root for subsequent relative path operations.

Trait Implementations

impl Debug for OsVfs[src]

impl Vfs for OsVfs[src]

Auto Trait Implementations

impl RefUnwindSafe for OsVfs

impl Send for OsVfs

impl Sync for OsVfs

impl Unpin for OsVfs

impl UnwindSafe for OsVfs

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.