pub type Result<T> = Result<T, TzError>;
Alias for std::result::Result with the crate unified error
std::result::Result
enum Result<T> { Ok(T), Err(TzError), }
Contains the success value
Contains the error value