1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
extern crate alloc;

use alloc::vec::Vec;

use crate::creator::Creator;
use crate::matcher::Matcher;

#[derive(Debug)]
pub struct EventProcessor {
    pub matchers: Vec<Matcher>,
    pub creators: Vec<Creator>,
}