pub struct ThematicBreak {
pub meta: NodeMeta,
pub marker: ThematicBreakMarker,
}Expand description
A thematic break / horizontal rule. Source: ---, ***, or ___.
Fields§
§meta: NodeMetaNode metadata (source span).
marker: ThematicBreakMarkerWhich character formed the break.
Trait Implementations§
Source§impl Clone for ThematicBreak
impl Clone for ThematicBreak
Source§fn clone(&self) -> ThematicBreak
fn clone(&self) -> ThematicBreak
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ThematicBreak
impl Debug for ThematicBreak
impl Eq for ThematicBreak
Source§impl From<ThematicBreak> for Block
impl From<ThematicBreak> for Block
Source§fn from(node: ThematicBreak) -> Self
fn from(node: ThematicBreak) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ThematicBreak
impl PartialEq for ThematicBreak
Source§fn eq(&self, other: &ThematicBreak) -> bool
fn eq(&self, other: &ThematicBreak) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ThematicBreak
Auto Trait Implementations§
impl Freeze for ThematicBreak
impl RefUnwindSafe for ThematicBreak
impl Send for ThematicBreak
impl Sync for ThematicBreak
impl Unpin for ThematicBreak
impl UnsafeUnpin for ThematicBreak
impl UnwindSafe for ThematicBreak
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