[][src]Struct boa::syntax::ast::node::iteration::continue_node::Continue

pub struct Continue { /* fields omitted */ }

The continue statement terminates execution of the statements in the current iteration of the current or labeled loop, and continues execution of the loop with the next iteration.

The continue statement can include an optional label that allows the program to jump to the next iteration of a labeled loop statement instead of the current loop. In this case, the continue statement needs to be nested within this labeled statement.

More information:

Implementations

impl Continue[src]

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

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

Creates a Continue AST node.

Trait Implementations

impl Clone for Continue[src]

impl Debug for Continue[src]

impl Display for Continue[src]

impl Drop for Continue[src]

impl Executable for Continue[src]

impl Finalize for Continue[src]

impl From<Continue> for Node[src]

impl PartialEq<Continue> for Continue[src]

impl StructuralPartialEq for Continue[src]

impl Trace for Continue[src]

Auto Trait Implementations

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> NativeObject for T where
    T: Any + Debug + Trace
[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>,