[][src]Struct ncursesw::normal::Attributes

pub struct Attributes { /* fields omitted */ }

Methods

impl Attributes[src]

pub fn color_pair(&self) -> ColorPair[src]

Trait Implementations

impl AttributesColorPairType<Attributes, ColorPair, i16> for AttributesColorPair[src]

impl AttributesGeneric for Attributes[src]

impl AttributesType<i16> for Attributes[src]

impl BitOr<Attribute> for Attributes[src]

Implement the | operator for adding an Attribute to Attributes

type Output = Self

The resulting type after applying the | operator.

impl BitOr<Attributes> for Attributes[src]

Implement the | operator for adding Attributes to Attributes

type Output = Self

The resulting type after applying the | operator.

impl BitOr<Attributes> for ChtypeChar[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<Attributes> for ChtypeString[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<ColorPair> for Attributes[src]

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..

type Output = Attributes

The resulting type after applying the | operator.

impl BitXor<Attribute> for Attributes[src]

Implement the ^ operator for disabling an Attribute from Attributes

type Output = Self

The resulting type after applying the ^ operator.

impl BitXor<Attributes> for Attributes[src]

Implement the ^ operator for removing Attributes from Attributes

type Output = Self

The resulting type after applying the ^ operator.

impl BitXor<Attributes> for ChtypeChar[src]

type Output = Self

The resulting type after applying the ^ operator.

impl BitXor<Attributes> for ChtypeString[src]

type Output = Self

The resulting type after applying the ^ operator.

impl BitXor<ColorPair> for Attributes[src]

type Output = Self

The resulting type after applying the ^ operator.

impl Clone for Attributes[src]

impl Copy for Attributes[src]

impl Debug for Attributes[src]

impl Default for Attributes[src]

impl Eq for Attributes[src]

impl From<Attribute> for Attributes[src]

impl From<Attributes> for ColorPair[src]

impl From<u32> for Attributes[src]

impl Hash for Attributes[src]

impl Into<i32> for Attributes[src]

impl Into<u32> for Attributes[src]

impl PartialEq<Attributes> for Attributes[src]

impl StructuralEq for Attributes[src]

impl StructuralPartialEq for Attributes[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.