pub trait IntoSplit {
    type Write;
    type Read;

    fn into_split(self) -> (Self::Write, Self::Read);
}
Expand description

Interface to split something into writing and reading halves

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors