Trait libnotcurses_sys::NcStyleMethods[][src]

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

Enables the NcStyle methods.

Required methods

Implementors

Returns a Vec with all the styles contained in the current style.

Returns true if the current style has included the other_style.

Adds the other_style to the current style.