pub trait ShouldBe:
PartialEq
+ Debug
+ Sized {
// Provided method
fn should_be(&self, expected: impl ShouldBeArgs<Self>) { ... }
}Provided Methods§
Sourcefn should_be(&self, expected: impl ShouldBeArgs<Self>)
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.