pub struct Session(/* private fields */);Expand description
The primary interface to access and modify session state.
Session is an extractor—you can specify it as an input type for your
request handlers and it will be automatically extracted from the incoming request.
use actix_session::Session;
async fn index(session: Session) -> actix_web::Result<&'static str> {
// access session data
if let Some(count) = session.get::<i32>("counter")? {
session.insert("counter", count + 1)?;
} else {
session.insert("counter", 1)?;
}
Ok("Welcome!")
}You can also retrieve a Session object from an HttpRequest or a ServiceRequest using
SessionExt.
Implementations§
Source§impl Session
impl Session
Sourcepub fn get<T>(&self, key: &str) -> Result<Option<T>, SessionGetError>where
T: DeserializeOwned,
pub fn get<T>(&self, key: &str) -> Result<Option<T>, SessionGetError>where
T: DeserializeOwned,
Get a value from the session.
It returns an error if it fails to deserialize as T the JSON value associated with key.
Sourcepub fn entries(&self) -> Ref<'_, HashMap<String, String>>
pub fn entries(&self) -> Ref<'_, HashMap<String, String>>
Get all raw key-value data from the session.
Note that values are JSON encoded.
Sourcepub fn status(&self) -> SessionStatus
pub fn status(&self) -> SessionStatus
Returns session status.
Sourcepub fn insert<T>(
&self,
key: impl Into<String>,
value: T,
) -> Result<(), SessionInsertError>where
T: Serialize,
pub fn insert<T>(
&self,
key: impl Into<String>,
value: T,
) -> Result<(), SessionInsertError>where
T: Serialize,
Inserts a key-value pair into the session.
Any serializable value can be used and will be encoded as JSON in session data, hence why only a reference to the value is taken.
It returns an error if it fails to serialize value to JSON.
Sourcepub fn remove(&self, key: &str) -> Option<String>
pub fn remove(&self, key: &str) -> Option<String>
Remove value from the session.
If present, the JSON encoded value is returned.
Trait Implementations§
Source§impl FromRequest for Session
Extractor implementation for Sessions.
impl FromRequest for Session
Extractor implementation for Sessions.
§Examples
use actix_session::Session;
#[get("/")]
async fn index(session: Session) -> Result<impl Responder> {
// access session data
if let Some(count) = session.get::<i32>("counter")? {
session.insert("counter", count + 1)?;
} else {
session.insert("counter", 1)?;
}
let count = session.get::<i32>("counter")?.unwrap();
Ok(format!("Counter: {}", count))
}Source§fn from_request(
req: &HttpRequest,
_: &mut Payload,
) -> <Session as FromRequest>::Future
fn from_request( req: &HttpRequest, _: &mut Payload, ) -> <Session as FromRequest>::Future
Self from request parts asynchronously.