pub struct Escape {
pub meta: NodeMeta,
pub value: char,
}Expand description
A backslash escape such as \* or \\.
Fields§
§meta: NodeMetaNode metadata (source span).
value: charThe escaped (literal) character.
Trait Implementations§
impl Eq for Escape
impl StructuralPartialEq for Escape
Auto Trait Implementations§
impl Freeze for Escape
impl RefUnwindSafe for Escape
impl Send for Escape
impl Sync for Escape
impl Unpin for Escape
impl UnsafeUnpin for Escape
impl UnwindSafe for Escape
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