pub struct NodeText {
pub value: NodeValueExpr,
}
Expand description
Text node.
Quoted text. It’s planned to support unquoted text as well using span start and end, but that currently only works with nightly rust.
Fields§
§value: NodeValueExpr
The text value.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for NodeText
impl !Send for NodeText
impl !Sync for NodeText
impl Unpin for NodeText
impl UnwindSafe for NodeText
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