aws_smithy_runtime_api/http.rs
/*
* 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};