pub enum Attribute {
Show 18 variants Normal, CharText, Standout, Underline, Reverse, Blink, Dim, Bold, AlternativeCharSet, Invisible, Protected, Horizontal, Left, Low, Right, Top, Vertical, Italic,
}
Expand description

Terminal Attribute.

Variants

Normal

Normal display (no highlight).

CharText

Bit-mask to extract a character.

Standout

Best highlighting mode of the terminal.

Underline

Underlining.

Reverse

Reverse video.

Blinking.

Dim

Half bright.

Bold

Extra bright or bold.

AlternativeCharSet

Alternate character set.

Invisible

Invisible or blank mode.

Protected

Protected mode.

Horizontal

Left

Low

Right

Top

Vertical

Italic

Italics.

Trait Implementations

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

The resulting type after applying the | operator.

Performs the | operation. Read more

Implement the | operator for adding an Attribute to Attributes

The resulting type after applying the | operator.

Performs the | operation. Read more

Implement the ^ operator for disabling an Attribute from Attributes

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

Formats the value using the given formatter. Read more

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

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.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.