pub struct MarkdownLineRange {
pub start: usize,
pub end: usize,
}Expand description
A one-based, inclusive range of lines in the original Markdown source.
Fields§
§start: usize§end: usizeTrait Implementations§
Source§impl Clone for MarkdownLineRange
impl Clone for MarkdownLineRange
Source§fn clone(&self) -> MarkdownLineRange
fn clone(&self) -> MarkdownLineRange
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 moreimpl Copy for MarkdownLineRange
Source§impl Debug for MarkdownLineRange
impl Debug for MarkdownLineRange
Source§impl<'de> Deserialize<'de> for MarkdownLineRange
impl<'de> Deserialize<'de> for MarkdownLineRange
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MarkdownLineRange
Source§impl PartialEq for MarkdownLineRange
impl PartialEq for MarkdownLineRange
Source§impl Serialize for MarkdownLineRange
impl Serialize for MarkdownLineRange
impl StructuralPartialEq for MarkdownLineRange
Auto Trait Implementations§
impl Freeze for MarkdownLineRange
impl RefUnwindSafe for MarkdownLineRange
impl Send for MarkdownLineRange
impl Sync for MarkdownLineRange
impl Unpin for MarkdownLineRange
impl UnsafeUnpin for MarkdownLineRange
impl UnwindSafe for MarkdownLineRange
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