Struct readme_sync::CMarkSpan[][src]

pub struct CMarkSpan<'a> {
    pub range: &'a Range<usize>,
    pub text_source: &'a TextSource,
    pub note: String,
}

Event’s region of source text.

Fields

range: &'a Range<usize>

The corresponding range of the original event in the source text.

text_source: &'a TextSource

Text source of original parsed event.

note: String

Cumulative data transformation note.

Trait Implementations

impl<'a> Clone for CMarkSpan<'a>[src]

impl<'a> Debug for CMarkSpan<'a>[src]

impl<'a> Extend<CMarkSpan<'a>> for CodemapSpans<'_>[src]

impl<'a> PartialEq<CMarkSpan<'a>> for CMarkSpan<'a>[src]

impl<'a> StructuralPartialEq for CMarkSpan<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for CMarkSpan<'a>

impl<'a> Send for CMarkSpan<'a>

impl<'a> Sync for CMarkSpan<'a>

impl<'a> Unpin for CMarkSpan<'a>

impl<'a> UnwindSafe for CMarkSpan<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.