pub type AcpResult<T> = Result<T, AcpError>;
Result type for ACP operations
pub enum AcpResult<T> { Ok(T), Err(AcpError), }
Contains the success value
Contains the error value