Struct oxidize::Expectation [] [src]

pub struct Expectation<Lhs: Debug>(_);

Holds an expectation's left hand side (LHS). This LHS can then be matched by any Matcher.

Methods

impl<Lhs: Debug> Expectation<Lhs>
[src]

fn is<T>(&self, matcher: Box<T>) where T: Matcher<Lhs>

fn is_not<T>(&self, matcher: Box<T>) where T: Matcher<Lhs>

fn to<T>(&self, matcher: Box<T>) where T: Matcher<Lhs>

fn to_not<T>(&self, matcher: Box<T>) where T: Matcher<Lhs>