Type Alias axfs_vfs::VfsResult

source ·
pub type VfsResult<T = ()> = AxResult<T>;
Expand description

Alias of AxResult.

Aliased Type§

enum VfsResult<T = ()> {
    Ok(T),
    Err(AxError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AxError)

Contains the error value