channels 0.13.0

Bidirectional channel-like communication over generic Read/Write streams.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(has_core_error)]
#[allow(unused)]
pub use core::error::Error;

#[cfg(all(not(has_core_error), feature = "std"))]
#[allow(unused)]
pub use std::error::Error;

#[cfg(all(not(has_core_error), not(feature = "std")))]
#[allow(unused)]
pub trait Error: core::fmt::Debug + core::fmt::Display {}