pub struct CustomSessionInput {
pub user: Value,
pub session: Value,
}Expand description
Session payload passed to the custom session handler.
Fields§
§user: Value§session: ValueTrait Implementations§
Source§impl Clone for CustomSessionInput
impl Clone for CustomSessionInput
Source§fn clone(&self) -> CustomSessionInput
fn clone(&self) -> CustomSessionInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CustomSessionInput
impl Debug for CustomSessionInput
Source§impl PartialEq for CustomSessionInput
impl PartialEq for CustomSessionInput
Source§fn eq(&self, other: &CustomSessionInput) -> bool
fn eq(&self, other: &CustomSessionInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CustomSessionInput
Auto Trait Implementations§
impl Freeze for CustomSessionInput
impl RefUnwindSafe for CustomSessionInput
impl Send for CustomSessionInput
impl Sync for CustomSessionInput
impl Unpin for CustomSessionInput
impl UnsafeUnpin for CustomSessionInput
impl UnwindSafe for CustomSessionInput
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