[][src]Enum texel_types::SymbolStyle

pub enum SymbolStyle {
    Bold,
    Italic,
    Underline,
}

Symbol styles enum

Variants

Bold
Italic
Underline

Trait Implementations

impl BigEnumSetType for SymbolStyle[src]

impl BigEnumSetTypePrivate for SymbolStyle[src]

type Repr = [usize; 1]

The array of type [usize; N] used to store the bitset.

impl<'_> BitAnd<&'_ BigEnumSet<SymbolStyle>> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the & operator.

impl BitAnd<BigEnumSet<SymbolStyle>> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the & operator.

impl BitAnd<SymbolStyle> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the & operator.

impl<'_> BitOr<&'_ BigEnumSet<SymbolStyle>> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the | operator.

impl BitOr<BigEnumSet<SymbolStyle>> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the | operator.

impl BitOr<SymbolStyle> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the | operator.

impl<'_> BitXor<&'_ BigEnumSet<SymbolStyle>> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the ^ operator.

impl BitXor<BigEnumSet<SymbolStyle>> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the ^ operator.

impl BitXor<SymbolStyle> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the ^ operator.

impl Clone for SymbolStyle[src]

impl Copy for SymbolStyle[src]

impl Debug for SymbolStyle[src]

impl Eq for SymbolStyle[src]

impl Not for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the ! operator.

impl PartialEq<BigEnumSet<SymbolStyle>> for SymbolStyle[src]

impl PartialEq<SymbolStyle> for SymbolStyle[src]

impl<'_> Sub<&'_ BigEnumSet<SymbolStyle>> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the - operator.

impl Sub<BigEnumSet<SymbolStyle>> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the - operator.

impl Sub<SymbolStyle> for SymbolStyle[src]

type Output = BigEnumSet<SymbolStyle>

The resulting type after applying the - operator.

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.