Enum ncursesw::normal::Attribute[][src]

pub enum Attribute {
Show 18 variants Normal, CharText, Standout, Underline, Reverse, Blink, Dim, Bold, AlternativeCharSet, Invisible, Protected, Horizontal, Left, Low, Right, Top, Vertical, Italic,
}

Variants

Normal

CharText

Standout

Underline

Reverse

Dim

Bold

AlternativeCharSet

Invisible

Protected

Horizontal

Left

Low

Right

Top

Vertical

Italic

Trait Implementations

Implement the | operator for combining two ’Attribute’s into Attributes

The resulting type after applying the | operator.

Performs the | operation. Read more

Implement the | operator for adding an Attribute to Attributes

The resulting type after applying the | operator.

Performs the | operation. Read more

Implement the | operator for combining a ColorPair and a Attribute to produce Attributes

Example
extern crate ncursesw;

use ncursesw::*;
use ncursesw::normal::*;

start_color()?;

let blue = Color::Dark(BaseColor::Blue);
let yellow = Color::Dark(BaseColor::Yellow);

let color_pair1 = ColorPair::new(1, Colors::new(blue, yellow))?;
let attrs = Attribute::Dim | color_pair1;

assert!(attrs.color_pair() == color_pair1);

The resulting type after applying the | operator.

The resulting type after applying the | operator.

Performs the | operation. Read more

The resulting type after applying the | operator.

Performs the | operation. Read more

Implement the | operator for combining a ColorPair and an Attribute to produce Attributes

The resulting type after applying the | operator.

Performs the | operation. Read more

Implement the ^ operator for disabling an Attribute from Attributes

The resulting type after applying the ^ operator.

Performs the ^ operation. Read more

The resulting type after applying the ^ operator.

Performs the ^ operation. Read more

The resulting type after applying the ^ operator.

Performs the ^ operation. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

Performs the conversion.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.