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