1 2 3 4 5 6 7 8 9 10 11 12
use crate::core::matcher::{Matcher, Matcherable}; use std::fmt::Debug; pub fn be_equal<V> (value: V) -> Matcherable<V> where V: Clone + Debug + PartialEq { Matcherable::new(value) }