docktor_api/
lib.rs

1#![allow(clippy::module_inception)]
2#![allow(clippy::upper_case_acronyms)]
3#![allow(clippy::large_enum_variant)]
4#![allow(clippy::wrong_self_convention)]
5#![allow(clippy::should_implement_trait)]
6#![allow(clippy::blacklisted_name)]
7#![allow(clippy::vec_init_then_push)]
8#![allow(rustdoc::bare_urls)]
9//! Docktor Orchestration System.
10
11// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
12/// Errors that can occur when calling the service.
13pub mod error;
14/// Input structures for operations.
15pub mod input;
16mod json_deser;
17mod json_ser;
18/// Data structures used by operation inputs/outputs.
19pub mod model;
20/// All operations that this crate can perform.
21pub mod operation;
22mod operation_deser;
23/// Operation handlers definition and implementation.
24pub mod operation_handler;
25/// A registry of your service's operations.
26pub mod operation_registry;
27mod operation_ser;
28/// Output structures for operations.
29pub mod output;
30mod server_operation_handler_trait;
31/// Crate version number.
32pub static PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
33pub use aws_smithy_http::byte_stream::ByteStream;
34pub use aws_smithy_http::result::SdkError;
35pub use aws_smithy_types::Blob;
36pub use aws_smithy_types::DateTime;