cloud-sdk 0.60.0

no_std-first provider-neutral cloud SDK foundations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Bounded provider-neutral asynchronous task and event response models.

mod model;
mod value;

pub use model::{
    AsyncEvent, AsyncEventBatch, AsyncEventParts, AsyncPollDisposition, AsyncProgressStep,
    AsyncResourceStatus, AsyncTask, AsyncTaskError, AsyncTaskParts,
};
pub use value::{
    AsyncResourceId, AsyncResourceLink, AsyncResourceText, AsyncResourceTimestamp,
    AsyncResourceValidationError, MAX_ASYNC_ERRORS, MAX_ASYNC_EVENTS, MAX_ASYNC_ID_BYTES,
    MAX_ASYNC_LINK_BYTES, MAX_ASYNC_PROGRESS_STEPS, MAX_ASYNC_TEXT_BYTES,
};

#[cfg(test)]
mod tests;