Struct filecheck::CheckerBuilder[][src]

pub struct CheckerBuilder { /* fields omitted */ }

Builder for constructing a Checker instance.

Methods

impl CheckerBuilder
[src]

Create a new, blank CheckerBuilder.

Add a potential directive line.

Returns true if this is a directive with one of the known prefixes. Returns false if no known directive was found. Returns an error if there is a problem with the directive.

Add multiple directives.

The text is split into lines that are added individually as potential directives. This method can be used to parse a whole test file containing multiple directives.

Get the finished Checker.

Auto Trait Implementations