Enum pancurses::Attribute[][src]

pub enum Attribute {
    AlternativeCharSet,
    Bold,
    Blink,
    CharText,
    Dim,
    Leftline,
    Invisible,
    Italic,
    Normal,
    Overline,
    Reverse,
    Rightline,
    Strikeout,
    Underline,
}

Variants

Trait Implementations

impl Copy for Attribute
[src]

impl Clone for Attribute
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Attribute
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Attribute
[src]

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

This method tests for !=.

impl Eq for Attribute
[src]

impl Hash for Attribute
[src]

Feeds this value into the given [Hasher]. Read more

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

impl BitOr<Attribute> for Attributes
[src]

Implement the | operator for adding an Attribute to Attributes

Example

use pancurses::{Attribute, Attributes};

let mut attributes = Attributes::new();
assert!(!attributes.is_bold());
attributes = attributes | Attribute::Bold;
assert!(attributes.is_bold());

The resulting type after applying the | operator.

Performs the | operation.

impl BitXor<Attribute> for Attributes
[src]

Implement the ^ operator for disabling an Attribute from Attributes

Example

use pancurses::{Attribute, Attributes};

let mut attributes = Attributes::from(Attribute::Bold);
assert!(attributes.is_bold());
attributes = attributes ^ Attribute::Bold;
assert!(!attributes.is_bold());

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitOr for Attribute
[src]

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

Example

use pancurses::{Attribute, Attributes};

let attributes = Attribute::Blink | Attribute::Reverse;
assert!(!attributes.is_bold());
assert!(attributes.is_blink());
assert!(attributes.is_reverse());

The resulting type after applying the | operator.

Performs the | operation.

impl From<Attribute> for Attributes
[src]

Performs the conversion.

impl From<Attribute> for chtype
[src]

Performs the conversion.

impl BitOr<Attribute> for ColorPair
[src]

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

Example

use pancurses::Attribute;
use pancurses::colorpair::ColorPair;

let attributes = ColorPair(5) | Attribute::Blink;
assert!(attributes.color_pair().0 == 5);
assert!(!attributes.is_bold());
assert!(attributes.is_blink());

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<ColorPair> for Attribute
[src]

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

Example

use pancurses::Attribute;
use pancurses::colorpair::ColorPair;

let attributes = Attribute::Blink | ColorPair(2);
assert!(attributes.color_pair().0 == 2);
assert!(!attributes.is_bold());
assert!(attributes.is_blink());

The resulting type after applying the | operator.

Performs the | operation.

Auto Trait Implementations

impl Send for Attribute

impl Sync for Attribute