pub type PlayResult<T> = Result<T, PlayError>;
Result type for Play framework operations
pub enum PlayResult<T> { Ok(T), Err(PlayError), }
Contains the success value
Contains the error value