pub enum StringPart {
Literal(Node),
Interpolation(Box<Expression>, Option<FormatSpecifier>),
}
Variants§
Literal(Node)
Interpolation(Box<Expression>, Option<FormatSpecifier>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StringPart
impl RefUnwindSafe for StringPart
impl Send for StringPart
impl Sync for StringPart
impl Unpin for StringPart
impl UnwindSafe for StringPart
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