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>),
}