Trait libnotcurses_sys::NcPixelImplApi[][src]

pub trait NcPixelImplApi {
    const NOPIXEL: NcPixelImpl;
    const SIXEL: NcPixelImpl;
    const LINUXFB: NcPixelImpl;
    const ITERM2: NcPixelImpl;
    const KITTY_STATIC: NcPixelImpl;
    const KITTY_ANIMATED: NcPixelImpl;
    const KITTY_SELFREF: NcPixelImpl;
}
Expand description

Enables the NcPixelImpl associated methods and constants.

Associated Constants

No pixel support (for NcPixelImpl).

Sixel (for NcPixelImpl).

Linux framebuffer (for NcPixelImpl).

iTerm2 (for NcPixelImpl).

Kitty prior to C=1 and animation (for NcPixelImpl).

Kitty with animation but not reflexive composition (for NcPixelImpl).

Kitty with reflexive composition (for NcPixelImpl).

Implementors