pub struct Prose {
pub number: usize,
pub content: String,
pub ordered_item: bool,
}Expand description
A prose line, stripped of its blockquote and list-marker prefix.
Fields§
§number: usizeThe 1-based source line number.
content: StringThe content after any blockquote markers and one list marker.
ordered_item: boolTrue where the line opens an ordered (numbered) list item.
Trait Implementations§
impl Eq for Prose
impl StructuralPartialEq for Prose
Auto Trait Implementations§
impl Freeze for Prose
impl RefUnwindSafe for Prose
impl Send for Prose
impl Sync for Prose
impl Unpin for Prose
impl UnsafeUnpin for Prose
impl UnwindSafe for Prose
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.