Skip to main content

Module api

Module api 

Source
Expand description

Public API module.

This module exports the main types for using fuzzy regex:

  • FuzzyRegex: The compiled regex type
  • FuzzyRegexBuilder: Builder for customized regex construction
  • Match, Captures: Match result types
  • StreamingMatcher, 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 FuzzyRegex type.
streaming
Streaming API for fuzzy regex matching.