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