pub type EmptyResult = Result<()>;
This type is used to handle all the different errors on Phink. It’s a simple binding to anyhow.
anyhow
pub enum EmptyResult { Ok(()), Err(Error), }
Contains the success value
Contains the error value