aws_smithy_runtime_api/
http.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

//! HTTP request and response types

mod error;
mod extensions;
mod headers;
mod request;
mod response;

pub use error::HttpError;
pub use headers::{HeaderValue, Headers, HeadersIter};
pub use request::{Request, RequestParts};
pub use response::{Response, StatusCode};