Function contract_check_requires

Source
pub fn contract_check_requires<C>(cond: C)
where C: Fn() -> bool,
🔬This is a nightly-only experimental API. (contracts_internals)
Expand description

Check if the pre-condition cond has been met.

By default, if contract_checks is enabled, this will panic with no unwind if the condition returns false.