mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-28 00:00:20 +02:00
Implement Clone for CookieJar, PrivateCookieJar and SignedCookieJar (#1808)
This commit is contained in:
@@ -83,7 +83,7 @@ pub use cookie::Key;
|
||||
/// .route("/me", get(me));
|
||||
/// # let app: Router = app;
|
||||
/// ```
|
||||
#[derive(Debug, Default)]
|
||||
#[derive(Debug, Default, Clone)]
|
||||
pub struct CookieJar {
|
||||
jar: cookie::CookieJar,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user