sql-orm 0.1.0

Public API crate for the sql-orm workspace.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0308]: mismatched types
  --> tests/ui/navigation_load_collection_requires_mut.rs:35:56
   |
35 |         let _future = db.users.load_collection::<Post>(&user, "posts");
   |                                ----------------------- ^^^^^ types differ in mutability
   |                                |
   |                                arguments to this method are incorrect
   |
   = note: expected mutable reference `&mut User`
                      found reference `&User`
note: method defined here
  --> src/context.rs
   |
   |     pub async fn load_collection<J>(
   |                  ^^^^^^^^^^^^^^^