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§
Sourcetype OwnedWrite
type OwnedWrite
Owned Write Split
Required Methods§
Sourcefn into_split(self) -> (Self::OwnedRead, Self::OwnedWrite)
fn into_split(self) -> (Self::OwnedRead, Self::OwnedWrite)
Split into owned parts