mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-10 08:57:36 +00:00
16 lines
562 B
Plaintext
16 lines
562 B
Plaintext
error[E0277]: the trait bound `User: AuthUser` is not satisfied
|
|
--> $DIR/dropck-only-error-async.rs:28:5
|
|
|
|
|
LL | auth: AuthSession<User::AuthnBackend>,
|
|
| ^^^^ the trait `AuthUser` is not implemented for `User`
|
|
|
|
error[E0277]: the trait bound `User: AuthUser` is not satisfied
|
|
--> $DIR/dropck-only-error-async.rs:28:5
|
|
|
|
|
LL | auth: AuthSession<User::AuthnBackend>,
|
|
| ^^^^ the trait `AuthUser` is not implemented for `User`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|