mod any;
mod closure;
mod compare;
mod deref;
mod inspect;
mod multi;
mod no_args;
mod range;
mod string;
use std::fmt::Display;
pub use any::{any, Any};
pub use closure::{closure, Closure};
pub use compare::{eq, ge, gt, le, lt, ne, Eq, Ge, Gt, Le, Lt, Ne};
pub use deref::{deref, Deref};
pub use inspect::{inspect, Inspect};
pub use multi::{multi, Multi};
pub use no_args::{no_args, NoArgs};
pub use range::{range, Range};
pub use string::{
contains as str_contains, ends_with as str_ends_with, is_empty, starts_with as str_starts_with,
Contains as StrContains, EndsWith as StrEndsWith, IsEmpty, StartsWith as StrStartsWith,
};
pub trait Matcher<T>: Display {
fn matches(&self, value: &T) -> bool;
}