use std::fmt;
use crate::reflection;
use crate::Predicate;
#[derive(Clone, PartialEq, Eq)]
pub(crate) struct DebugAdapter<T>
where
T: fmt::Debug,
{
pub(crate) debug: T,
}
impl<T> DebugAdapter<T>
where
T: fmt::Debug,
{
pub fn new(debug: T) -> Self {
Self { debug }
}
}
impl<T> fmt::Display for DebugAdapter<T>
where
T: fmt::Debug,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{:#?}", self.debug)
}
}
impl<T> fmt::Debug for DebugAdapter<T>
where
T: fmt::Debug,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.debug.fmt(f)
}
}
pub(crate) fn default_find_case<'a, P, Item>(
pred: &'a P,
expected: bool,
variable: &Item,
) -> Option<reflection::Case<'a>>
where
P: Predicate<Item>,
Item: ?Sized,
{
let actual = pred.eval(variable);
if expected == actual {
Some(reflection::Case::new(Some(pred), actual))
} else {
None
}
}