Compile time assertions.
QED is an initialism of the Latin phrase quod erat demonstrandum, meaning "which was to be demonstrated".
This crate contains compile time assertion macros used for maintaining safety invariants or limiting platform support. If the assertion is false, a compiler error is emitted.
Add this to your Cargo.toml
:
toml
[dependencies]
qed = "1.3.0"
Then make compile time assertions like:
```rust use core::num::NonZeroU8;
qed::constassert!(usize::BITS >= u32::BITS); qed::constasserteq!("Veni, vidi, vici".len(), "Cogito, ergo sum".len()); qed::constassertne!('∎'.lenutf8(), 0); qed::constassertmatches!(NonZeroU8::new(42), Some(_)); ```
no_std
qed is no_std
compatible although some macros may construct types which
require ::std
to be available.
This crate requires at least Rust 1.59.0. This version can be bumped in minor releases.
qed
is licensed under the MIT License (c) Ryan Lopopolo.