mssf-util 0.8.0

mssf utilites and extensions for tokio and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------

//! Channel composition: [`SwapChannel`] (atomic Channel hot-swap)
//! plus the [`TargetChannel`] convenience alias / builder.

mod builder;
mod swap;

pub use self::builder::{TargetChannel, TargetChannelBuilder};
pub use self::swap::SwapChannel;