Type Alias StmtContinue

Source
pub type StmtContinue = StmtContinue<SourceRange>;

Aliased Type§

struct StmtContinue {
    pub range: SourceRange,
}

Fields§

§range: SourceRange

Trait Implementations§

Source§

impl Located for StmtContinue

Source§

impl LocatedMut for StmtContinue

Source§

fn range_mut(&mut self) -> &mut SourceRange

Source§

impl<R: Clone> Clone for StmtContinue<R>

Source§

fn clone(&self) -> StmtContinue<R>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<R: Debug> Debug for StmtContinue<R>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T, U> Foldable<T, U> for StmtContinue<T>

Source§

type Mapped = StmtContinue<U>

Source§

fn fold<F: Fold<T, TargetU = U> + ?Sized>( self, folder: &mut F, ) -> Result<Self::Mapped, F::Error>

Source§

impl<R> Node for StmtContinue<R>

Source§

const NAME: &'static str = "Continue"

Source§

const FIELD_NAMES: &'static [&'static str]

Source§

impl<R: PartialEq> PartialEq for StmtContinue<R>

Source§

fn eq(&self, other: &StmtContinue<R>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<R> StructuralPartialEq for StmtContinue<R>