Struct actix_session::Session
source · 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: DeserializeOwned>(
&self,
key: &str
) -> Result<Option<T>, SessionGetError>
pub fn get<T: DeserializeOwned>( &self, key: &str ) -> Result<Option<T>, SessionGetError>
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: Serialize>(
&self,
key: impl Into<String>,
value: T
) -> Result<(), SessionInsertError>
pub fn insert<T: Serialize>( &self, key: impl Into<String>, value: T ) -> Result<(), SessionInsertError>
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
impl FromRequest for Session
Extractor implementation for Session
s.
§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) -> Self::Future
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future
Self
from request parts asynchronously.