pub type ConnectionPlanResult<C> = Result<Arc<ConnectionPlanResponse>, <C as ClientApi>::Error>;
pub enum ConnectionPlanResult<C> { Ok(Arc<ConnectionPlanResponse>), Err(<C as ClientApi>::Error), }
Contains the success value
Contains the error value