chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

28
vendor/backon/src/docs/examples/mod.rs vendored Normal file
View File

@@ -0,0 +1,28 @@
//! Examples of using backon.
#[doc = include_str!("basic.md")]
pub mod basic {}
#[doc = include_str!("closure.md")]
pub mod closure {}
#[doc = include_str!("inside_mut_self.md")]
pub mod inside_mut_self {}
#[doc = include_str!("sqlx.md")]
pub mod sqlx {}
#[doc = include_str!("with_args.md")]
pub mod with_args {}
#[doc = include_str!("with_mut_self.md")]
pub mod with_mut_self {}
#[doc = include_str!("with_self.md")]
pub mod with_self {}
#[doc = include_str!("with_specific_error.md")]
pub mod with_specific_error {}
#[doc = include_str!("retry_after.md")]
pub mod retry_after {}