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