mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-18 04:39:26 +01:00
28 lines
531 B
Rust
28 lines
531 B
Rust
|
use axum_macros::FromRequest;
|
||
|
use axum::extract::FromRef;
|
||
|
use axum_extra::extract::cookie::{PrivateCookieJar, Key};
|
||
|
|
||
|
#[derive(FromRequest)]
|
||
|
#[from_request(state(AppState))]
|
||
|
struct Extractor {
|
||
|
cookies: PrivateCookieJar,
|
||
|
}
|
||
|
|
||
|
struct AppState {
|
||
|
key: Key,
|
||
|
}
|
||
|
|
||
|
impl FromRef<AppState> for Key {
|
||
|
fn from_ref(input: &AppState) -> Self {
|
||
|
input.key.clone()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn assert_from_request()
|
||
|
where
|
||
|
Extractor: axum::extract::FromRequest<AppState, axum::body::Body, Rejection = axum::response::Response>,
|
||
|
{
|
||
|
}
|
||
|
|
||
|
fn main() {}
|