pub struct SessionEndContext {
pub session_id: String,
pub reason: String,
}Expand description
Context passed to session end hooks.
Fields§
§session_id: StringSession ID.
reason: StringTermination reason.
Trait Implementations§
Source§impl Clone for SessionEndContext
impl Clone for SessionEndContext
Source§fn clone(&self) -> SessionEndContext
fn clone(&self) -> SessionEndContext
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SessionEndContext
impl RefUnwindSafe for SessionEndContext
impl Send for SessionEndContext
impl Sync for SessionEndContext
impl Unpin for SessionEndContext
impl UnsafeUnpin for SessionEndContext
impl UnwindSafe for SessionEndContext
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