[][src]Struct crossterm::style::Attributes

pub struct Attributes(_);

a bitset for all possible attributes

Implementations

impl Attributes[src]

pub fn set(&mut self, attribute: Attribute)[src]

Sets the attribute. If it's already set, this does nothing.

pub fn unset(&mut self, attribute: Attribute)[src]

Unsets the attribute. If it's not set, this changes nothing.

pub fn toggle(&mut self, attribute: Attribute)[src]

Sets the attribute if it's unset, unset it if it is set.

pub fn has(self, attribute: Attribute) -> bool[src]

Returns whether the attribute is set.

pub fn extend(&mut self, attributes: Attributes)[src]

Sets all the passed attributes. Removes none.

pub fn is_empty(self) -> bool[src]

Returns whether there is no attribute set.

Trait Implementations

impl BitAnd<Attribute> for Attributes[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAnd<Attributes> for Attributes[src]

type Output = Self

The resulting type after applying the & operator.

impl BitOr<Attribute> for Attributes[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<Attributes> for Attributes[src]

type Output = Self

The resulting type after applying the | operator.

impl BitXor<Attribute> for Attributes[src]

type Output = Self

The resulting type after applying the ^ operator.

impl BitXor<Attributes> 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<Attribute> 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.