Create Fehler authored by fu5507ix's avatar fu5507ix
rocket | error[E0412]: cannot find type `email` in module `person`
rocket | --> src/database/models.rs:35:9
rocket | |
rocket | 35 | pub email: &'a str,
rocket | | ^^^^^ not found in `person`
rocket | |
rocket | help: consider importing this struct
rocket | |
rocket | 1 | use crate::schema::boat_user::email;
rocket | |
rocket |
rocket | error[E0412]: cannot find type `password` in module `person`
rocket | --> src/database/models.rs:36:9
rocket | |
rocket | 36 | pub password: &'a str,
rocket | | ^^^^^^^^ not found in `person`
rocket |
rocket | error[E0425]: cannot find value `email` in module `person`
rocket | --> src/database/models.rs:35:9
rocket | |
rocket | 35 | pub email: &'a str,
rocket | | ^^^^^ not found in `person`
rocket | |
rocket | help: consider importing this unit struct
rocket | |
rocket | 1 | use crate::schema::boat_user::email;
rocket | |
rocket |
rocket | error[E0425]: cannot find value `password` in module `person`
rocket | --> src/database/models.rs:36:9
rocket | |
rocket | 36 | pub password: &'a str,
rocket | | ^^^^^^^^ not found in `person`
rocket |