pub trait ColEncode: Clone {
    // Required methods
    fn encode_foreground(
        buffer: &mut String,
        rgb24: Rgb24,
        term_info_cache: &TermInfoCache
    );
    fn encode_background(
        buffer: &mut String,
        rgb24: Rgb24,
        term_info_cache: &TermInfoCache
    );
}

Required Methods§

source

fn encode_foreground( buffer: &mut String, rgb24: Rgb24, term_info_cache: &TermInfoCache )

source

fn encode_background( buffer: &mut String, rgb24: Rgb24, term_info_cache: &TermInfoCache )

Object Safety§

This trait is not object safe.

Implementors§