pub trait StrictParent<W: WriteRaw>: 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§
fn from_write_split(writer: StrictWriter<W>, remnant: Self::Remnant) -> Self
fn into_write_split(self) -> (StrictWriter<W>, Self::Remnant)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.