Struct grep_matcher::NoError[][src]

pub struct NoError(_);

NoError provides an error type for matchers that never produce errors.

This error type implements the std::error::Error and fmt::Display traits for use in matcher implementations that can never produce errors.

The fmt::Debug and fmt::Display impls for this type panics.

Trait Implementations

impl Debug for NoError
[src]

Formats the value using the given formatter. Read more

impl Eq for NoError
[src]

impl PartialEq for NoError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Error for NoError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl Display for NoError
[src]

Formats the value using the given formatter. Read more

impl From<NoError> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for NoError

impl Sync for NoError