cloud-sdk 0.29.0

no_std-first provider-neutral cloud SDK foundations.
Documentation
//! Allocation-free operation preparation and checked response policy.

mod metadata;
mod policy;
mod prepared;

pub use metadata::{
    CostIntent, OperationImpact, OperationMetadata, OperationMetadataError, RequestSemantics,
    RetryEligibility,
};
pub use policy::{
    CheckedResponse, ContentTypePolicy, ResponseBodyPolicy, ResponsePolicy, ResponsePolicyError,
    ResponsePolicyValidationError,
};
pub use prepared::{
    PreparationStorage, PrepareOperation, PreparedExecutionError, PreparedRequest, ProviderService,
};

#[cfg(test)]
mod tests;