pub type CdpResult<T> = Result<T, CdpError>;
Result type for CDP operations
enum CdpResult<T> { Ok(T), Err(CdpError), }
Contains the success value
Contains the error value