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