Expand description
Implementation code common to the QCS OpenAPI and gRPC clients.
You probably don’t need to use this directly, as the clients should expose anything you might need.
§Features
tracing: enablestracingsupport inClientConfiguration.tracing-config: enables [TracingConfiguration] support for enabling/disabling traces per-URL. Requires thetracingfeature.python: enables Python bindings for the client.
Re-exports§
pub use configuration::ClientConfiguration;
Modules§
- backoff
- Exponential backoff for use with QCS.
- configuration
- By default, all settings are loaded from files located under your home directory in the
.qcsfolder. Within that folder:
Macros§
- impl_eq
- Provides support for equality checks of a [
pyo3::pyclass] by implementing__richcmp__. - impl_
repr - Implements repr on a [
pyo3::pyclass] by using it’sstd::fmt::Debugimplementation. - impl_
str - Implement
__str__for wrapper types whose inner type implementsDisplay.