pub type Utf8Result = Result<bool, Utf8Error>;
Custom result type
pub enum Utf8Result { Ok(bool), Err(Utf8Error), }
Contains the success value
Contains the error value