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 Neg trait is implemented for Value
#[test]
fn test_neg_trait_exists() {
    // This test just verifies that the Neg trait is implemented for Value
    // We don't need to test detailed functionality since that's
    // covered in the main ops_neg_test.rs

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

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