Skip to main content

aws_smithy_runtime_api/
http.rs

1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6//! HTTP request and response types
7
8mod error;
9mod extensions;
10mod headers;
11mod non_utf8;
12mod request;
13mod response;
14
15pub use error::HttpError;
16pub use headers::{HeaderValue, Headers, HeadersIter};
17pub use non_utf8::NonUtf8HeaderHandling;
18pub use request::{Request, RequestParts};
19pub use response::{Response, StatusCode};