Expand description
Public API module.
This module exports the main types for using fuzzy regex:
FuzzyRegex: The compiled regex typeFuzzyRegexBuilder: Builder for customized regex constructionMatch,Captures: Match result typesStreamingMatcher,StreamingMatch: Streaming API types
Re-exports§
pub use builder::FuzzyRegexBuilder;pub use builder::MatchFlags;pub use builder::RegexConfig;pub use match_result::CaptureMatches;pub use match_result::Captures;pub use match_result::Match;pub use match_result::Matches;pub use match_result::Split;pub use regex::FuzzyRegex;pub use streaming::ByteMatches;pub use streaming::FeedMatches;pub use streaming::ReaderMatches;pub use streaming::StreamingMatch;pub use streaming::StreamingMatcher;
Modules§
- builder
- Builder for
FuzzyRegex. - match_
result - Match result types for the public API.
- regex
- The main
FuzzyRegextype. - streaming
- Streaming API for fuzzy regex matching.