s2n-quic 1.83.0

A Rust implementation of the IETF QUIC protocol
Documentation
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

// this is only exposed as an unstable provider so we get warnings without this
#[allow(unused_imports)]
pub use s2n_quic_core::packet::interceptor::{
    loss, Disabled, Havoc, Interceptor as PacketInterceptor, Loss,
};

/// Provides packet_interceptor support for an endpoint
pub trait Provider: 'static {
    type PacketInterceptor: 'static + PacketInterceptor;
    type Error: core::fmt::Display + Send + Sync;

    fn start(self) -> Result<Self::PacketInterceptor, Self::Error>;
}

pub type Default = Disabled;

impl_provider_utils!();

impl<T: 'static + Send + PacketInterceptor> Provider for T {
    type PacketInterceptor = T;
    type Error = core::convert::Infallible;

    fn start(self) -> Result<Self::PacketInterceptor, Self::Error> {
        Ok(self)
    }
}