Struct ncursesw::normal::ColorPair[][src]

pub struct ColorPair { /* fields omitted */ }
Expand description

A normal color pair.

Implementations

Create a new normal color pair.

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 colors = color_pair1.colors()?;

assert!(colors.foreground() == blue && colors.background() == yellow);

Trait Implementations

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.

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 setting a color pair on an Attributes object

Note: as only one color pair can be applied to attributes at any one time any previously Or’d color_pair will be Xor’d out of the attributes before Or’ing the new color pair..

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

Return the colors (foreground and background) of the color pair.

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 colors = color_pair1.colors()?;

assert!(colors.foreground() == blue && colors.background() == yellow);

Return the number of the color pair.

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 colors = color_pair1.colors()?;

assert!(color_pair1.number() == 1);

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Performs the conversion.

Performs the conversion.

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.

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.