pub type VfsResult<T> = Result<T, VfsError>;
A specialized Result type for VFS operations.
Result
pub enum VfsResult<T> { Ok(T), Err(VfsError), }
Contains the success value
Contains the error value