Struct ft_sdk::session::SessionID

source ·
pub struct SessionID(pub String);

Tuple Fields§

§0: String

Implementations§

source§

impl SessionID

source

pub fn create( conn: &mut Connection, user_id: Option<UserId>, data: Option<Value>, ) -> Result<Self, Error>

Create a new session entry with the given user ID. If the user ID is None, the session will be created without a user ID.

source

pub fn from_string<S: AsRef<str>>(s: S) -> Self

source

pub fn set_user_id( &self, conn: &mut Connection, user_id: UserId, ) -> Result<SessionID, Error>

Set the user ID for the given session.

source

pub fn data(&self, conn: &mut Connection) -> Result<SessionData, Error>

Get the session data object. Useful for fetching the entire session data in a single db call. Use get_key instead if you only need a single key

source

pub fn set_key<S: AsRef<str>, V: Serialize>( &self, conn: &mut Connection, k: S, v: V, ) -> Result<SessionID, SetKeyError>

Directly store a key-value in the session store. This will overwrite the existing value for the given key if it exists. This is useful for storing a single key-value pair without fetching the entire session data

Trait Implementations§

source§

impl Clone for SessionID

source§

fn clone(&self) -> SessionID

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 Debug for SessionID

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> IntoSql for T

source§

fn into_sql<T>(self) -> Self::Expression

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression

Convert &self to an expression for Diesel’s query builder. Read more
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.