[][src]Struct cansi::Match

pub struct Match<'t> {
    pub start: usize,
    pub end: usize,
    pub text: &'t str,
}

A match.

Fields

start: usize

First byte index.

end: usize

Last byte index + 1.

text: &'t str

The text slice (ie text[start..end]). Note that the range is (start..end].

Auto Trait Implementations

impl<'t> Send for Match<'t>

impl<'t> Unpin for Match<'t>

impl<'t> Sync for Match<'t>

impl<'t> UnwindSafe for Match<'t>

impl<'t> RefUnwindSafe for Match<'t>

Blanket Implementations

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

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

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.

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

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

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