[][src]Enum racer::MatchType

pub enum MatchType {
    Struct(Box<GenericsArgs>),
    Module,
    MatchArm,
    Function,
    Method(Option<Box<GenericsArgs>>),
    Crate,
    Let(BytePos),
    IfLet(BytePos),
    WhileLet(BytePos),
    For(BytePos),
    StructField,
    Enum(Box<GenericsArgs>),
    Union(Box<GenericsArgs>),
    EnumVariant(Option<Box<Match>>),
    UseAlias(Box<Match>),
    AssocType,
    Type,
    FnArg(Box<(Pat, Option<Ty>)>),
    Trait,
    Const,
    Static,
    Macro,
    Builtin(PrimKind),
    TypeParameter(Box<TraitBounds>),
}

Within a Match, specifies what was matched

Variants

Struct(Box<GenericsArgs>)
Module
MatchArm
Function
Method(Option<Box<GenericsArgs>>)
Crate
Let(BytePos)
IfLet(BytePos)
WhileLet(BytePos)
For(BytePos)
StructField
Enum(Box<GenericsArgs>)
Union(Box<GenericsArgs>)
EnumVariant(Option<Box<Match>>)

EnumVariant needs to have Enum type to complete methods

UseAlias(Box<Match>)
AssocType
Type
FnArg(Box<(Pat, Option<Ty>)>)
Trait
Const
Static
Macro
Builtin(PrimKind)
TypeParameter(Box<TraitBounds>)

fn f<T: Clone> or fn f(a: impl Clone) with its trait bounds

Implementations

impl MatchType[src]

pub fn is_function(&self) -> bool[src]

pub fn is_enum(&self) -> bool[src]

pub fn is_struct(&self) -> bool[src]

Trait Implementations

impl Clone for MatchType[src]

impl Debug for MatchType[src]

impl Display for MatchType[src]

impl PartialEq<MatchType> for MatchType[src]

impl StructuralPartialEq for MatchType[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<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]

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

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

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

type Error = !

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,