pub type Text = Result<String, Error>;
A representation of a value which can be stored and restored as a text.
pub enum Text { Ok(String), Err(Error), }
Contains the success value
Contains the error value