pub enum TextExpr {
Value(TextValue),
Nested(Box<TextExpr>),
}Variants§
Trait Implementations§
impl StructuralPartialEq for TextExpr
Auto Trait Implementations§
impl Freeze for TextExpr
impl RefUnwindSafe for TextExpr
impl Send for TextExpr
impl Sync for TextExpr
impl Unpin for TextExpr
impl UnwindSafe for TextExpr
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