VfsResult

Type Alias VfsResult 

Source
pub type VfsResult<T, Vfs: VfsCore> = Result<T, <Vfs::Path as PathType>::OwnedPath>;
Expand description

A convenience result type for a specific VFS.

Aliased Type§

pub enum VfsResult<T, Vfs: VfsCore> {
    Ok(T),
    Err(Error<<<Vfs as VfsCore>::Path as PathType>::OwnedPath>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error<<<Vfs as VfsCore>::Path as PathType>::OwnedPath>)

Contains the error value