17
Lost on this Axum error... any thoughts?
(programming.dev)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
That looks like a Extension/State mismatch to me. Do your function arguments line up with any extensions or state you are bringing in?
Thanks for the reply! I don't know what you mean by extensions, but the state is literally just the DB connection:
struct AppState { conn: DatabaseConnection, }