[][src]Trait fluid::core::should::ShouldExtension

pub trait ShouldExtension<L: Debug> {
    fn should(self) -> Should<L>;
}

Adds the should extension that permits to initiate an assertion.

Required methods

fn should(self) -> Should<L>

Initiates an assertion. Note that this method should not be used alone, but:

  • either with the fact or theory attribute,
  • or with the fact_! macro.
Loading content...

Implementors

impl<L: Debug> ShouldExtension<L> for L[src]

Loading content...