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