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