pub trait PrintApiImpl {
    type Buffer: FormatBuffer;

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

Required Associated Types§

source

type Buffer: FormatBuffer

Buffer used for printing only.

Provided Methods§

source

fn print_buffer(&self, _buffer: Self::Buffer)

Implementors§