rbatis-codegen 4.8.0

The Rust SQL Toolkit and ORM Library. An async, pure Rust SQL crate featuring compile-time Dynamic SQL gen system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Simple test to verify that Not trait is implemented for Value
#[test]
fn test_not_trait_exists() {
    // This test just verifies that Not trait is implemented for Value
    // We don't need to test detailed functionality since that's
    // covered in the main ops_not_test.rs

    // Just verify that the trait is available
    use rbs::Value;
    let _v = Value::Bool(true);

    // If this compiles, the trait is available
    assert!(true);
}