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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Attribute
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Attribute
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for Attribute
[src]

impl Hash for Attribute
[src]

[src]

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

1.3.0
[src]

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

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.

[src]

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.

[src]

Performs the | operation.