pub trait Matche {
    fn as_any(&self) -> &dyn Any;
    fn get_config_file(&self) -> &str;
    fn get_owner(&self) -> &str;
}

Required Methods

Implementors