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 request;
12mod response;
13
14pub use error::HttpError;
15pub use headers::{HeaderValue, Headers, HeadersIter};
16pub use request::{Request, RequestParts};
17pub use response::{Response, StatusCode};