Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lips7 committed Jul 19, 2024
1 parent 70f07cd commit 8064bd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions matcher_rs/src/matcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,6 @@ impl<'a, 'b: 'a> From<RegexResult<'b>> for MatchResult<'a> {
/// ```
pub type MatchTableMap<'a> = IntMap<u32, Vec<MatchTable<'a>>>;

#[derive(Debug, Clone)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
/// The [Matcher] struct is responsible for managing and facilitating various types of matching operations
/// utilizing different word processing strategies and match table configurations.
///
Expand All @@ -387,6 +385,8 @@ pub type MatchTableMap<'a> = IntMap<u32, Vec<MatchTable<'a>>>;
///
/// The [Matcher] struct is designed to be serialized and deserialized conditionally by leveraging the `serde`
/// feature, ensuring flexibility in its usage and integration with various systems and data transfer scenarios.
#[derive(Debug, Clone)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct Matcher {
process_type_tree: Vec<ProcessTypeBitNode>,
simple_word_table_conf_list: Vec<WordTableConf>,
Expand Down

0 comments on commit 8064bd1

Please sign in to comment.