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