rbdc 4.9.10

The Rust SQL Toolkit and ORM Library. An async, pure Rust SQL crate featuring compile-time Dynamic SQL
Documentation
1
2
3
4
5
6
7
8
use rbdc::Uuid;

#[test]
fn test_default() {
    let u = Uuid::default();
    println!("{}", u);
    assert_eq!(u.to_string(), "00000000-0000-0000-0000-000000000000");
}