pub enum ElixirStringPart {
Literal(String),
Expr(ElixirExpr),
}Expand description
A part of a string interpolation expression.
Variants§
Literal(String)
Expr(ElixirExpr)
Trait Implementations§
Source§impl Clone for ElixirStringPart
impl Clone for ElixirStringPart
Source§fn clone(&self) -> ElixirStringPart
fn clone(&self) -> ElixirStringPart
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ElixirStringPart
impl RefUnwindSafe for ElixirStringPart
impl Send for ElixirStringPart
impl Sync for ElixirStringPart
impl Unpin for ElixirStringPart
impl UnsafeUnpin for ElixirStringPart
impl UnwindSafe for ElixirStringPart
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