axum/axum-macros/tests/from_ref/pass/skip.rs

11 lines
158 B
Rust
Raw Normal View History

use axum_macros::FromRef;
#[derive(Clone, FromRef)]
struct AppState {
auth_token: String,
#[from_ref(skip)]
also_string: String,
}
fn main() {}