pub type Result<T, E = Problem> = Result<T, E>;
Convenience alias for functions that can error ouy with Problem.
Problem
pub enum Result<T, E = Problem> { Ok(T), Err(E), }
Contains the success value
Contains the error value
E
NotFound
None