pub enum TilePiece {
Static(String),
Hole(TileHole),
Projection {
source: ForSource,
sep: Option<String>,
body: Vec<TilePiece>,
span: Span,
},
Branch {
cond: Expr,
then: Vec<TilePiece>,
otherwise: Option<Vec<TilePiece>>,
span: Span,
},
}Expand description
One element of a parsed template.
Variants§
Static(String)
Bytes copied as written.
Hole(TileHole)
${expr : type | format !}.
Projection
@for <source> [sep "..."] { body }.
Fields
Branch
@if cond { body } [@else { body }].
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TilePiece
impl RefUnwindSafe for TilePiece
impl Send for TilePiece
impl Sync for TilePiece
impl Unpin for TilePiece
impl UnsafeUnpin for TilePiece
impl UnwindSafe for TilePiece
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more