pub trait PrintApiImpl {
type Buffer: FormatBuffer;
// Provided method
fn print_buffer(&self, _buffer: Self::Buffer) { ... }
}
Required Associated Types§
Sourcetype Buffer: FormatBuffer
type Buffer: FormatBuffer
Buffer used for printing only.