Type Alias ExprJoinedStr

Source
pub type ExprJoinedStr = ExprJoinedStr<SourceRange>;

Aliased Type§

struct ExprJoinedStr {
    pub range: SourceRange,
    pub values: Vec<Expr<SourceRange>>,
}

Fields§

§range: SourceRange§values: Vec<Expr<SourceRange>>

Trait Implementations§

Source§

impl Located for ExprJoinedStr

Source§

impl LocatedMut for ExprJoinedStr

Source§

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

Source§

impl<R: Clone> Clone for ExprJoinedStr<R>

Source§

fn clone(&self) -> ExprJoinedStr<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 ExprJoinedStr<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 ExprJoinedStr<T>

Source§

type Mapped = ExprJoinedStr<U>

Source§

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

Source§

impl<R> Node for ExprJoinedStr<R>

Source§

const NAME: &'static str = "JoinedStr"

Source§

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

Source§

impl<R: PartialEq> PartialEq for ExprJoinedStr<R>

Source§

fn eq(&self, other: &ExprJoinedStr<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 ExprJoinedStr<R>