[][src]Enum ra_ap_ide::HighlightModifier

#[repr(u8)]pub enum HighlightModifier {
    Attribute,
    ControlFlow,
    Definition,
    Documentation,
    Injected,
    Mutable,
    Consuming,
    Unsafe,
    Callable,
    Static,
}

Variants

Attribute

Used to differentiate individual elements within attributes.

ControlFlow

Used with keywords like if and break.

Definition

foo in fn foo(x: i32) is a definition, foo in foo(90 + 2) is not.

Documentation
Injected
Mutable
Consuming
Unsafe
Callable
Static

Used for associated functions

Trait Implementations

impl BitOr<HighlightModifier> for HighlightTag[src]

type Output = Highlight

The resulting type after applying the | operator.

impl BitOr<HighlightModifier> for Highlight[src]

type Output = Highlight

The resulting type after applying the | operator.

impl BitOrAssign<HighlightModifier> for HighlightModifiers[src]

impl BitOrAssign<HighlightModifier> for Highlight[src]

impl Clone for HighlightModifier[src]

impl Copy for HighlightModifier[src]

impl Debug for HighlightModifier[src]

impl Display for HighlightModifier[src]

impl Eq for HighlightModifier[src]

impl Hash for HighlightModifier[src]

impl Ord for HighlightModifier[src]

impl PartialEq<HighlightModifier> for HighlightModifier[src]

impl PartialOrd<HighlightModifier> for HighlightModifier[src]

impl StructuralEq for HighlightModifier[src]

impl StructuralPartialEq for HighlightModifier[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> Cast for T

impl<T> CloneAny for T where
    T: Clone + Any

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

impl<N> NodeTrait for N where
    N: Copy + Ord + Hash
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.