Enum analisar::aware::ast::Args[][src]

pub enum Args<'a> {
    ExpList {
        open_paren: Span,
        exprs: Vec<ExpListItem<'a>>,
        close_paren: Span,
    },
    Table(Table<'a>),
    String(LiteralString<'a>),
}

Variants

ExpList

Fields of ExpList

open_paren: Spanexprs: Vec<ExpListItem<'a>>close_paren: Span
Table(Table<'a>)
String(LiteralString<'a>)

Implementations

impl<'a> Args<'a>[src]

pub fn end(&self) -> usize[src]

Trait Implementations

impl<'a> Clone for Args<'a>[src]

impl<'a> Debug for Args<'a>[src]

impl<'a> PartialEq<Args<'a>> for Args<'a>[src]

impl<'a> StructuralPartialEq for Args<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Args<'a>[src]

impl<'a> Send for Args<'a>[src]

impl<'a> Sync for Args<'a>[src]

impl<'a> Unpin for Args<'a>[src]

impl<'a> UnwindSafe for Args<'a>[src]

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.