pub trait ParselyWrite<B>: Sized + StateSync {
type Ctx;
// Required method
fn write<T>(&self, buf: &mut B, ctx: Self::Ctx) -> Result<(), Error>
where T: ByteOrder;
}Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".