[][src]Struct grep_searcher::SinkContext

pub struct SinkContext<'b> { /* fields omitted */ }

A type that describes a contextual line reported by a searcher.

Methods

impl<'b> SinkContext<'b>[src]

pub fn bytes(&self) -> &'b [u8][src]

Returns the context bytes, including line terminators.

pub fn kind(&self) -> &SinkContextKind[src]

Returns the type of context.

pub fn absolute_byte_offset(&self) -> u64[src]

Returns the absolute byte offset of the start of this context. This offset is absolute in that it is relative to the very beginning of the input in a search, and can never be relied upon to be a valid index into an in-memory slice.

pub fn line_number(&self) -> Option<u64>[src]

Returns the line number of the first line in this context, if available.

Line numbers are only available when the search builder is instructed to compute them.

Trait Implementations

impl<'b> Clone for SinkContext<'b>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'b> Debug for SinkContext<'b>[src]

Auto Trait Implementations

impl<'b> Send for SinkContext<'b>

impl<'b> Sync for SinkContext<'b>

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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