pub type DcpResult<T> = Result<T, DcpError>;
Result type used by DCP APIs.
pub enum DcpResult<T> { Ok(T), Err(DcpError), }
Contains the success value
Contains the error value