Skip to main content

SessionManagerLayer

Struct SessionManagerLayer 

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

A layer for providing Session as a request extension.

Implementations§

Source§

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

Source

pub fn with_name<N>(self, name: N) -> SessionManagerLayer<Store, C>
where N: Into<Cow<'static, str>>,

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) -> SessionManagerLayer<Store, C>

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, ) -> SessionManagerLayer<Store, C>

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) -> SessionManagerLayer<Store, C>

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) -> SessionManagerLayer<Store, C>

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>(self, path: P) -> SessionManagerLayer<Store, C>
where P: Into<Cow<'static, str>>,

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>(self, domain: D) -> SessionManagerLayer<Store, C>
where D: Into<Cow<'static, str>>,

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_always_save( self, always_save: bool, ) -> SessionManagerLayer<Store, C>

Configures whether unmodified session should be saved on read or not. When the value is true, the session will be saved even if it was not changed.

This is useful when you want to reset Session expiration time on any valid request at the cost of higher SessionStore write activity and transmitting set-cookie header with each response.

It makes sense to use this setting with relative session expiration values, such as Expiry::OnInactivity(Duration). This setting will not cause session id to be cycled on save.

The default value is false.

§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)
    .with_always_save(true);
Source§

impl<Store> SessionManagerLayer<Store>
where Store: SessionStore,

Source

pub fn new(session_store: Store) -> SessionManagerLayer<Store>

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, C> Clone for SessionManagerLayer<Store, C>
where Store: Clone + SessionStore, C: Clone + CookieController,

Source§

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

Returns a duplicate 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, C> Debug for SessionManagerLayer<Store, C>
where Store: Debug + SessionStore, C: Debug + CookieController,

Source§

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

Formats the value using the given formatter. Read more
Source§

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

Source§

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

The wrapped service
Source§

fn layer( &self, inner: S, ) -> <SessionManagerLayer<Store, C> as Layer<S>>::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> UnsafeUnpin for SessionManagerLayer<Store, C>
where C: UnsafeUnpin,

§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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>,

Source§

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
Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,