pub enum ResolvedStringPart {
Literal(String),
Interpolation(ResolvedExpression, Option<FormatSpecifier>),
}
Variants§
Literal(String)
Interpolation(ResolvedExpression, Option<FormatSpecifier>)
Trait Implementations§
Source§impl Debug for ResolvedStringPart
impl Debug for ResolvedStringPart
Auto Trait Implementations§
impl Freeze for ResolvedStringPart
impl !RefUnwindSafe for ResolvedStringPart
impl !Send for ResolvedStringPart
impl !Sync for ResolvedStringPart
impl Unpin for ResolvedStringPart
impl !UnwindSafe for ResolvedStringPart
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