rustqual 1.2.2

Comprehensive Rust code quality analyzer — seven dimensions: IOSP, Complexity, DRY, SRP, Coupling, Test Quality, Architecture
Documentation
1
2
3
4
5
pub fn make_boxed() -> Box<i32> {
    let value = 42;

    Box::new(value)
}