Matches

Trait Matches 

Source
pub trait Matches<O> {
    // Required method
    fn validate_matches(&self, other: &O) -> bool;
}

Required Methods§

Source

fn validate_matches(&self, other: &O) -> bool

Implementors§

Source§

impl<T: PartialEq<O>, O> Matches<O> for T