s2n-quic-core 0.81.0

Internal crate used by s2n-quic
Documentation
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

mod error;
mod id;
pub mod iter;
pub mod limits;
#[cfg(feature = "alloc")]
pub mod ops;
pub mod state;
mod type_;

pub use error::*;
pub use id::*;
pub use limits::Limits;
pub use type_::*;

#[cfg(any(test, feature = "testing"))]
pub mod testing;