cloud-sdk 0.55.0

no_std-first provider-neutral cloud SDK foundations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Opt-in payload-free lifecycle diagnostics without automatic logging.

mod category;
mod event;
mod observer;

pub use category::{DiagnosticErrorCategory, DiagnosticRequestId, DiagnosticRetryCategory};
pub use event::{DiagnosticContext, DiagnosticEvent, DiagnosticResponse};
pub(crate) use observer::notify;
pub use observer::{DiagnosticObserver, NoopDiagnosticObserver};

#[cfg(test)]
mod tests;