Trait Splitable

Source
pub trait Splitable {
    type OwnedRead;
    type OwnedWrite;

    // Required method
    fn into_split(self) -> (Self::OwnedRead, Self::OwnedWrite);
}
Expand description

Inner split trait

Required Associated Types§

Source

type OwnedRead

Owned Read Split

Source

type OwnedWrite

Owned Write Split

Required Methods§

Source

fn into_split(self) -> (Self::OwnedRead, Self::OwnedWrite)

Split into owned parts

Implementors§