DEV Community

Discussion on: Practical Rust Web Development - API Rest

Collapse
 
jtr109 profile image
Ryan Li • Edited

Hi, your tutorial is awesome!

But I find a little issue of diesel that the line

use crate::schema::products::dsl::*;

in ProductList implementation cannot be placed in the top which will cause an unmatched type error of id in find method of Product implementation.

This issue caused by a duplicated id from crate::schema::products::dsl.

Collapse
 
werner profile image
Werner Echezuría

Hi, did you take a look at the last version, sometimes I fix these issues but I forgot to mention them, github.com/practical-rust-web-deve...

Collapse
 
jtr109 profile image
Ryan Li

Thanks for your reply. Your source code can works well.

It is my bad to take the line above to the top of the module. 😄