pub trait PrintApiImpl {
    type Buffer: FormatBuffer;

    fn print_buffer(&self, _buffer: Self::Buffer) { ... }
}

Required Associated Types§

Buffer used for printing only.

Provided Methods§

Implementors§