pub trait AssertableWithBounds<'a, T> {
type Output: RawAssertable<'a>;
// Required method
fn do_assert(&self, bounds: T) -> Self::Output;
}
Expand description
This Trait represents something that is assertable with some additional data. See Assertable
for general details.
Required Associated Types§
sourcetype Output: RawAssertable<'a>
type Output: RawAssertable<'a>
The output of the assertion