assertr 0.5.2

Fluent assertions for the Rust programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod boxed;
pub mod panic_value;
pub mod string;
pub mod vec;

pub mod prelude {
    pub use super::boxed::BoxAssertions;
    pub use super::panic_value::PanicValueAssertions;
    pub use super::string::StringAssertions;
    pub use super::vec::VecAssertions;
}