pub trait Encode<'en, Context = ()> {
// Required method
fn encode_with(&self, buf: &mut Vec<u8>, context: Context);
// Provided method
fn encode(&self, buf: &mut Vec<u8>)
where Self: Encode<'en, ()> { ... }
}
Required Methods§
fn encode_with(&self, buf: &mut Vec<u8>, context: Context)
Provided Methods§
Object Safety§
This trait is not object safe.