pub type VfsResult<T> = Result<T, VfsError>;
pub enum VfsResult<T> { Ok(T), Err(AxError), }
Contains the success value
Contains the error value