aws_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//! Runtime support code for the AWS SDK. This crate isn't intended to be used directly.
10
11#![warn(
12    missing_docs,
13    rustdoc::missing_crate_level_docs,
14    missing_debug_implementations,
15    rust_2018_idioms,
16    unreachable_pub
17)]