Trait distant_net::IntoSplit
source · [−]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
source