[][src]Enum fuzzy_pickles::ast::UseTail

pub enum UseTail {
    Ident(UseTailIdent),
    Glob(UseTailGlob),
    Multi(UseTailMulti),
}

Variants

Implementations

impl UseTail[src]

pub fn into_ident(self) -> Option<UseTailIdent>[src]

pub fn into_glob(self) -> Option<UseTailGlob>[src]

pub fn into_multi(self) -> Option<UseTailMulti>[src]

pub fn as_ident(&self) -> Option<&UseTailIdent>[src]

pub fn as_glob(&self) -> Option<&UseTailGlob>[src]

pub fn as_multi(&self) -> Option<&UseTailMulti>[src]

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

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

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

Trait Implementations

impl Debug for UseTail[src]

impl HasExtent for UseTail[src]

impl<'a> Index<&'a UseTail> for str[src]

type Output = str

The returned type after indexing.

impl Index<UseTail> for str[src]

type Output = str

The returned type after indexing.

impl Visit for UseTail[src]

Auto Trait Implementations

impl RefUnwindSafe for UseTail

impl Send for UseTail

impl Sync for UseTail

impl Unpin for UseTail

impl UnwindSafe for UseTail

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, 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.