Struct actix_session::storage::SessionKey
source · pub struct SessionKey(/* private fields */);
Expand description
A session key, the string stored in a client-side cookie to associate a user with its session state on the backend.
§Validation
Session keys are stored as cookies, therefore they cannot be arbitrary long. Session keys are required to be smaller than 4064 bytes.
use actix_session::storage::SessionKey;
let key: String = std::iter::repeat('a').take(4065).collect();
let session_key: Result<SessionKey, _> = key.try_into();
assert!(session_key.is_err());
Trait Implementations§
source§impl AsRef<str> for SessionKey
impl AsRef<str> for SessionKey
source§impl Debug for SessionKey
impl Debug for SessionKey
source§impl From<SessionKey> for String
impl From<SessionKey> for String
source§fn from(key: SessionKey) -> Self
fn from(key: SessionKey) -> Self
Converts to this type from the input type.
source§impl PartialEq for SessionKey
impl PartialEq for SessionKey
source§fn eq(&self, other: &SessionKey) -> bool
fn eq(&self, other: &SessionKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<String> for SessionKey
impl TryFrom<String> for SessionKey
impl Eq for SessionKey
impl StructuralPartialEq for SessionKey
Auto Trait Implementations§
impl Freeze for SessionKey
impl RefUnwindSafe for SessionKey
impl Send for SessionKey
impl Sync for SessionKey
impl Unpin for SessionKey
impl UnwindSafe for SessionKey
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more