pub struct SessionManagerLayer<Store: SessionStore, C: CookieController = PlaintextCookie> { /* private fields */ }
Expand description

A layer for providing Session as a request extension.

Implementationsยง

sourceยง

impl<Store: SessionStore, C: CookieController> SessionManagerLayer<Store, C>

source

pub fn with_name<N: Into<Cow<'static, str>>>(self, name: N) -> Self

Configures the name of the cookie used for the session. The default value is "id".

ยงExamples
use tower_sessions::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_name("my.sid");
source

pub fn with_http_only(self, http_only: bool) -> Self

Configures the "HttpOnly" attribute of the cookie used for the session.

ยงโš ๏ธ Warning: Cross-site scripting risk

Applications should generally not override the default value of true. If you do, you are exposing your application to increased risk of cookie theft via techniques like cross-site scripting.

ยงExamples
use tower_sessions::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_http_only(true);
source

pub fn with_same_site(self, same_site: SameSite) -> Self

Configures the "SameSite" attribute of the cookie used for the session. The default value is SameSite::Strict.

ยงExamples
use tower_sessions::{cookie::SameSite, MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_same_site(SameSite::Lax);
source

pub fn with_expiry(self, expiry: Expiry) -> Self

Configures the "Max-Age" attribute of the cookie used for the session. The default value is None.

ยงExamples
use time::Duration;
use tower_sessions::{Expiry, MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_expiry = Expiry::OnInactivity(Duration::hours(1));
let session_service = SessionManagerLayer::new(session_store).with_expiry(session_expiry);
source

pub fn with_secure(self, secure: bool) -> Self

Configures the "Secure" attribute of the cookie used for the session. The default value is true.

ยงExamples
use tower_sessions::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_secure(true);
source

pub fn with_path<P: Into<Cow<'static, str>>>(self, path: P) -> Self

Configures the "Path" attribute of the cookie used for the session. The default value is "/".

ยงExamples
use tower_sessions::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_path("/some/path");
source

pub fn with_domain<D: Into<Cow<'static, str>>>(self, domain: D) -> Self

Configures the "Domain" attribute of the cookie used for the session. The default value is None.

ยงExamples
use tower_sessions::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_domain("localhost");
source

pub fn with_signed(self, key: Key) -> SessionManagerLayer<Store, SignedCookie>

Manages the session cookie via a signed interface.

See SignedCookies.

use tower_sessions::{cookie::Key, MemoryStore, SessionManagerLayer};

let key = { /* a cryptographically random key >= 64 bytes */ };

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_signed(key);
source

pub fn with_private(self, key: Key) -> SessionManagerLayer<Store, PrivateCookie>

Manages the session cookie via an encrypted interface.

See PrivateCookies.

use tower_sessions::{cookie::Key, MemoryStore, SessionManagerLayer};

let key = { /* a cryptographically random key >= 64 bytes */ };

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_private(key);
sourceยง

impl<Store: SessionStore> SessionManagerLayer<Store>

source

pub fn new(session_store: Store) -> Self

Create a new SessionManagerLayer with the provided session store and default cookie configuration.

ยงExamples
use tower_sessions::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store);

Trait Implementationsยง

sourceยง

impl<Store: Clone + SessionStore, C: Clone + CookieController> Clone for SessionManagerLayer<Store, C>

sourceยง

fn clone(&self) -> SessionManagerLayer<Store, C>

Returns a copy of the value. Read more
1.0.0 ยท sourceยง

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
sourceยง

impl<Store: Debug + SessionStore, C: Debug + CookieController> Debug for SessionManagerLayer<Store, C>

sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
sourceยง

impl<S, Store: SessionStore, C: CookieController> Layer<S> for SessionManagerLayer<Store, C>

ยง

type Service = CookieManager<SessionManager<S, Store, C>>

The wrapped service
sourceยง

fn layer(&self, inner: S) -> Self::Service

Wrap the given service with the middleware, returning a new service that has been decorated with the middleware.

Auto Trait Implementationsยง

ยง

impl<Store, C> Freeze for SessionManagerLayer<Store, C>
where C: Freeze,

ยง

impl<Store, C> RefUnwindSafe for SessionManagerLayer<Store, C>
where C: RefUnwindSafe, Store: RefUnwindSafe,

ยง

impl<Store, C> Send for SessionManagerLayer<Store, C>

ยง

impl<Store, C> Sync for SessionManagerLayer<Store, C>
where C: Sync,

ยง

impl<Store, C> Unpin for SessionManagerLayer<Store, C>
where C: Unpin,

ยง

impl<Store, C> UnwindSafe for SessionManagerLayer<Store, C>
where C: UnwindSafe, Store: RefUnwindSafe,

Blanket Implementationsยง

sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
sourceยง

impl<T> From<T> for T

sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

sourceยง

impl<T> FromRef<T> for T
where T: Clone,

sourceยง

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
sourceยง

impl<T> Instrument for T

sourceยง

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
sourceยง

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

sourceยง

impl<T> Same for T

ยง

type Output = T

Should always be Self
sourceยง

impl<T> ToOwned for T
where T: Clone,

ยง

type Owned = T

The resulting type after obtaining ownership.
sourceยง

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
sourceยง

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

ยง

type Error = Infallible

The type returned in the event of a conversion error.
sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

ยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
sourceยง

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

sourceยง

fn vzip(self) -> V

sourceยง

impl<T> WithSubscriber for T

sourceยง

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
sourceยง

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more