Type Alias VfsResult

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

Alias of [AxResult].

Aliased Type§

pub 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