DEBSOURCES
Skip Quicknav
sources / rust-axum / 0.7.9-13 / axum-macros / tests / from_ref / pass / skip.rs
12345678910
use axum_macros::FromRef; #[derive(Clone, FromRef)] struct AppState { auth_token: String, #[from_ref(skip)] also_string: String, } fn main() {}