pub type Result<T> = Result<T, AcpError>;
@acp:summary “Result type alias for ACP operations”
pub enum Result<T> { Ok(T), Err(AcpError), }
Contains the success value
Contains the error value