ShouldBe

Trait ShouldBe 

Source
pub trait ShouldBe:
    PartialEq
    + Debug
    + Sized {
    // Provided method
    fn should_be(&self, expected: impl ShouldBeArgs<Self>) { ... }
}

Provided Methods§

Source

fn should_be(&self, expected: impl ShouldBeArgs<Self>)

§Panics
  • If expected != self.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> ShouldBe for T
where T: PartialEq + Debug + Sized,