[][src]Struct spyglass::Match

pub struct Match {
    pub text_index: usize,
    pub index_in_str: usize,
    pub start_line: usize,
    pub end_line: usize,
    pub length: usize,
    pub errors: usize,
}

Fields

text_index: usizeindex_in_str: usizestart_line: usizeend_line: usizelength: usizeerrors: usize

Trait Implementations

impl Clone for Match[src]

impl Debug for Match[src]

impl<'de> Deserialize<'de> for Match[src]

impl Eq for Match[src]

impl Ord for Match[src]

impl PartialEq<Match> for Match[src]

impl PartialOrd<Match> for Match[src]

impl Serialize for Match[src]

impl StructuralEq for Match[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.