pub enum SessionLifecycleEventType {
SessionCreated,
SessionDeleted,
SessionUpdated,
SessionForeground,
SessionBackground,
}Expand description
Types of session lifecycle events.
Variants§
Trait Implementations§
Source§impl Clone for SessionLifecycleEventType
impl Clone for SessionLifecycleEventType
Source§fn clone(&self) -> SessionLifecycleEventType
fn clone(&self) -> SessionLifecycleEventType
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 moreSource§impl Debug for SessionLifecycleEventType
impl Debug for SessionLifecycleEventType
Source§impl<'de> Deserialize<'de> for SessionLifecycleEventType
impl<'de> Deserialize<'de> for SessionLifecycleEventType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for SessionLifecycleEventType
impl Hash for SessionLifecycleEventType
impl Eq for SessionLifecycleEventType
impl StructuralPartialEq for SessionLifecycleEventType
Auto Trait Implementations§
impl Freeze for SessionLifecycleEventType
impl RefUnwindSafe for SessionLifecycleEventType
impl Send for SessionLifecycleEventType
impl Sync for SessionLifecycleEventType
impl Unpin for SessionLifecycleEventType
impl UnwindSafe for SessionLifecycleEventType
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