[][src]Struct rslint_parser::ast::NewExpr

pub struct NewExpr { /* fields omitted */ }

Implementations

impl NewExpr[src]

pub fn new_token(&self) -> Option<SyntaxToken>[src]

pub fn object(&self) -> Option<Expr>[src]

pub fn arguments(&self) -> Option<ArgList>[src]

Trait Implementations

impl AstNode for NewExpr[src]

impl Clone for NewExpr[src]

impl Debug for NewExpr[src]

impl Display for NewExpr[src]

impl Eq for NewExpr[src]

impl From<NewExpr> for Expr[src]

impl Hash for NewExpr[src]

impl PartialEq<NewExpr> for NewExpr[src]

impl StructuralEq for NewExpr[src]

impl StructuralPartialEq for NewExpr[src]

Auto Trait Implementations

impl RefUnwindSafe for NewExpr

impl Send for NewExpr

impl Sync for NewExpr

impl Unpin for NewExpr

impl UnwindSafe for NewExpr

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> Erasable for T

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