[][src]Struct boa::syntax::ast::node::return_smt::Return

pub struct Return { /* fields omitted */ }

The return statement ends function execution and specifies a value to be returned to the function caller.

Syntax: return [expression];

expression:

The expression whose value is to be returned. If omitted, undefined is returned instead.

When a return statement is used in a function body, the execution of the function is stopped. If specified, a given value is returned to the function caller.

More information:

Implementations

impl Return[src]

pub fn label(&self) -> Option<&str>[src]

pub fn expr(&self) -> Option<&Node>[src]

pub fn new<E, OE, L>(expr: OE, label: L) -> Self where
    E: Into<Node>,
    OE: Into<Option<E>>,
    L: Into<Option<Box<str>>>, 
[src]

Creates a Return AST node.

Trait Implementations

impl Clone for Return[src]

impl Debug for Return[src]

impl Display for Return[src]

impl Drop for Return[src]

impl Executable for Return[src]

impl Finalize for Return[src]

impl From<Return> for Node[src]

impl PartialEq<Return> for Return[src]

impl StructuralPartialEq for Return[src]

impl Trace for Return[src]

Auto Trait Implementations

impl RefUnwindSafe for Return

impl Send for Return

impl Sync for Return

impl Unpin for Return

impl UnwindSafe for Return

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,