aws_smithy_runtime_api/
lib.rs

1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/* Automatically managed default lints */
7#![cfg_attr(docsrs, feature(doc_auto_cfg))]
8/* End of automatically managed default lints */
9#![warn(
10    missing_docs,
11    rustdoc::missing_crate_level_docs,
12    unreachable_pub,
13    rust_2018_idioms
14)]
15#![allow(clippy::new_without_default)]
16
17//! APIs needed to configure and customize the Smithy generated code.
18//!
19//! Most users will not need to use this crate directly as the most frequently used
20//! APIs are re-exported in the generated clients. However, this crate will be useful
21//! for anyone writing a library for others to use with their generated clients.
22//!
23//! If you're needing to depend on this and you're not writing a library for Smithy
24//! generated clients, then please file an issue on [smithy-rs](https://github.com/smithy-lang/smithy-rs)
25//! as we likely missed re-exporting one of the APIs.
26//!
27//! All client-specific code is in the [`client`] root level module
28//! to leave room for smithy-rs server APIs in the future.
29
30/// A boxed error that is `Send` and `Sync`.
31pub mod box_error;
32
33/// APIs for client orchestration.
34#[cfg(feature = "client")]
35pub mod client;
36
37pub mod http;
38
39pub mod shared;