progenitor-extras 0.2.0

Extra functionality for the Progenitor OpenAPI client generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Extra functionality for the [Progenitor](https://docs.rs/progenitor) OpenAPI client generator.
//!
//! ## Operation retries
//!
//! The [`retry`] module provides utilities to perform retries against
//! Progenitor-generated API clients with a backoff via the [`backon`] crate. See
//! the module documentation for more information.

#![deny(missing_docs)]

pub mod retry;

pub use backon;