Trait libnotcurses_sys::NcStyleApi[][src]

pub trait NcStyleApi {
    const MASK: u16;
    const ITALIC: u16;
    const UNDERLINE: u16;
    const UNDERCURL: u16;
    const STRUCK: u16;
    const BOLD: u16;
    const NOSTYLE: u16;

    fn add(&mut self, other_style: NcStyle);
fn has(&self, other: NcStyle) -> bool;
fn to_vec(&self) -> Vec<NcStyle>; }
Expand description

Enables the NcStyle associated methods and constants.

Associated Constants

Required methods

Implementors