mirror of
https://github.com/actix/actix-extras.git
synced 2025-06-26 10:27:42 +02:00
MSRV 1.68 (#328)
This commit is contained in:
@ -69,15 +69,18 @@ impl SessionStore for MockStore {
|
||||
_session_state: HashMap<String, String>,
|
||||
_ttl: &Duration,
|
||||
) -> Result<SessionKey, UpdateError> {
|
||||
todo!()
|
||||
#![allow(clippy::diverging_sub_expression)]
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
async fn update_ttl(&self, _session_key: &SessionKey, _ttl: &Duration) -> Result<(), Error> {
|
||||
todo!()
|
||||
#![allow(clippy::diverging_sub_expression)]
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
async fn delete(&self, _session_key: &SessionKey) -> Result<(), Error> {
|
||||
todo!()
|
||||
#![allow(clippy::diverging_sub_expression)]
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user