aws-smithy-runtime-api 1.18.0

Smithy runtime types.
Documentation
/*
 * 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 non_utf8;
mod request;
mod response;

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