Struct grep_printer::JSONSink[][src]

pub struct JSONSink<'p, 's, M: Matcher, W> { /* fields omitted */ }
Expand description

An implementation of Sink associated with a matcher and an optional file path for the JSON printer.

This type is generic over a few type parameters:

  • 'p refers to the lifetime of the file path, if one is provided. When no file path is given, then this is 'static.
  • 's refers to the lifetime of the JSON printer that this type borrows.
  • M refers to the type of matcher used by grep_searcher::Searcher that is reporting results to this sink.
  • W refers to the underlying writer that this printer is writing its output to.

Implementations

Returns true if and only if this printer received a match in the previous search.

This is unaffected by the result of searches before the previous search.

Return the total number of matches reported to this sink.

This corresponds to the number of times Sink::matched is called.

If binary data was found in the previous search, this returns the offset at which the binary data was first detected.

The offset returned is an absolute offset relative to the entire set of bytes searched.

This is unaffected by the result of searches before the previous search. e.g., If the search prior to the previous search found binary data but the previous search found no binary data, then this will return None.

Return a reference to the stats produced by the printer for all searches executed on this sink.

Trait Implementations

Formats the value using the given formatter. Read more

The type of an error that should be reported by a searcher. Read more

This method is called whenever a match is found. Read more

This method is called whenever a context line is found, and is optional to implement. By default, it does nothing and returns true. Read more

This method is called when a search has begun, before any search is executed. By default, this does nothing. Read more

This method is called when a search has completed. By default, this does nothing. Read more

This method is called whenever a break in contextual lines is found, and is optional to implement. By default, it does nothing and returns true. Read more

This method is called whenever binary detection is enabled and binary data is found. If binary data is found, then this is called at least once for the first occurrence with the absolute byte offset at which the binary data begins. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.