connection-layer 0.0.2

Datagram Connection Hash Layer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/nimble-rust/workspace
 * Licensed under the MIT License. See LICENSE in the project root for license information.
 */
//! This module provides a prelude with the most commonly used types from the crate.
//!
//! By importing this prelude, you gain easy access to the core types and traits
//! that are frequently used throughout the crate. This reduces the boilerplate
//! needed in user code.
pub use crate::{client_codec::ConnectionLayerClientCodec, host_codec::{
    ConnectionLayerHostCodec,
    DatagramHostDecoder,
    DatagramHostEncoder,
}, ConnectionId, ConnectionLayer,
                ConnectionLayerMode,
                RequestId,
};