[][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>),
    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>)ModuleMatchArmFunctionMethod(Option<Box<GenericsArgs>>)CrateLet(BytePos)IfLet(BytePos)WhileLet(BytePos)For(BytePos)StructFieldEnum(Box<GenericsArgs>)EnumVariant(Option<Box<Match>>)

EnumVariant needs to have Enum type to complete methods

UseAlias(Box<Match>)AssocTypeTypeFnArg(Box<(Pat, Option<Ty>)>)TraitConstStaticMacroBuiltin(PrimKind)TypeParameter(Box<TraitBounds>)

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

Methods

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 PartialEq<MatchType> for MatchType[src]

impl Clone for MatchType[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for MatchType[src]

impl Display for MatchType[src]

Auto Trait Implementations

impl Send for MatchType

impl Sync for MatchType

Blanket Implementations

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

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<E> SpecializationError for E[src]

impl<T> Erased for T[src]

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

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

impl<T> Erased for T