[][src]Struct grep_searcher::SinkFinish

pub struct SinkFinish { /* fields omitted */ }

Summary data reported at the end of a search.

This reports data such as the total number of bytes searched and the absolute offset of the first occurrence of binary data, if any were found.

A searcher that stops early because of an error does not call finish. A searcher that stops early because the Sink implementor instructed it to will still call finish.

Methods

impl SinkFinish[src]

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

Return the total number of bytes searched.

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

If binary detection is enabled and if binary data was found, then this returns the absolute byte offset of the first detected byte of binary data.

Note that since this is an absolute byte offset, it cannot be relied upon to index into any addressable memory.

Trait Implementations

impl Clone for SinkFinish[src]

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

Performs copy-assignment from source. Read more

impl Debug for SinkFinish[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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