[][src]Struct rslint_parser::ast::FnExpr

pub struct FnExpr { /* fields omitted */ }

Implementations

impl FnExpr[src]

impl FnExpr[src]

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

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

pub fn name(&self) -> Option<Name>[src]

pub fn parameters(&self) -> Option<ParameterList>[src]

pub fn body(&self) -> Option<BlockStmt>[src]

Trait Implementations

impl AstNode for FnExpr[src]

impl Clone for FnExpr[src]

impl Debug for FnExpr[src]

impl Display for FnExpr[src]

impl Eq for FnExpr[src]

impl From<FnExpr> for Expr[src]

impl Hash for FnExpr[src]

impl PartialEq<FnExpr> for FnExpr[src]

impl StructuralEq for FnExpr[src]

impl StructuralPartialEq for FnExpr[src]

Auto Trait Implementations

impl RefUnwindSafe for FnExpr

impl Send for FnExpr

impl Sync for FnExpr

impl Unpin for FnExpr

impl UnwindSafe for FnExpr

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.