pub enum StrPart {
Literal(String),
Parsed(Box<Expr>),
}Variants§
Trait Implementations§
impl StructuralPartialEq for StrPart
Auto Trait Implementations§
impl Freeze for StrPart
impl RefUnwindSafe for StrPart
impl Send for StrPart
impl Sync for StrPart
impl Unpin for StrPart
impl UnsafeUnpin for StrPart
impl UnwindSafe for StrPart
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