[][src]Struct rslint_parser::ast::FnDecl

pub struct FnDecl { /* fields omitted */ }

Implementations

impl FnDecl[src]

impl FnDecl[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 FnDecl[src]

impl Clone for FnDecl[src]

impl Debug for FnDecl[src]

impl Display for FnDecl[src]

impl Eq for FnDecl[src]

impl From<FnDecl> for DefaultDecl[src]

impl From<FnDecl> for Decl[src]

impl Hash for FnDecl[src]

impl PartialEq<FnDecl> for FnDecl[src]

impl StructuralEq for FnDecl[src]

impl StructuralPartialEq for FnDecl[src]

Auto Trait Implementations

impl RefUnwindSafe for FnDecl

impl Send for FnDecl

impl Sync for FnDecl

impl Unpin for FnDecl

impl UnwindSafe for FnDecl

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.