pub struct Delete {
pub meta: NodeMeta,
pub marker: DeleteMarker,
pub children: Vec<Inline>,
}Expand description
Strikethrough: ~~text~~ (or single ~text~ when single-tilde is enabled).
Fields§
§meta: NodeMetaNode metadata (source span).
marker: DeleteMarkerWhether the span used one or two tildes.
children: Vec<Inline>The struck-through inline content.
Trait Implementations§
impl Eq for Delete
impl StructuralPartialEq for Delete
Auto Trait Implementations§
impl Freeze for Delete
impl RefUnwindSafe for Delete
impl Send for Delete
impl Sync for Delete
impl Unpin for Delete
impl UnsafeUnpin for Delete
impl UnwindSafe for Delete
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