//! Defines the trait `Assert`.
/// Defines an assertion.
////// See implementations provided with this library to know how to correctly
/// create your own asserts.
pubtraitAssert{/// Tell whether the assertion has succeed.
fnsuccess(&self)->bool;/// Return the error to print in case of failure.
fnerror_message(&self)-> String;}