pub trait StrictParent<W: Write>: TypedParent {
    type Remnant;

    // Required methods
    fn from_write_split(writer: StrictWriter<W>, remnant: Self::Remnant) -> Self;
    fn into_write_split(self) -> (StrictWriter<W>, Self::Remnant);
}

Required Associated Types§

Required Methods§

source

fn from_write_split(writer: StrictWriter<W>, remnant: Self::Remnant) -> Self

source

fn into_write_split(self) -> (StrictWriter<W>, Self::Remnant)

Object Safety§

This trait is not object safe.

Implementors§