pub struct RootActiveSessionsChangedAction {
pub active_sessions: i64,
}Expand description
Fired when the number of active sessions changes.
Fields§
§active_sessions: i64Current count of active sessions
Trait Implementations§
Source§impl Clone for RootActiveSessionsChangedAction
impl Clone for RootActiveSessionsChangedAction
Source§fn clone(&self) -> RootActiveSessionsChangedAction
fn clone(&self) -> RootActiveSessionsChangedAction
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<'de> Deserialize<'de> for RootActiveSessionsChangedAction
impl<'de> Deserialize<'de> for RootActiveSessionsChangedAction
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 PartialEq for RootActiveSessionsChangedAction
impl PartialEq for RootActiveSessionsChangedAction
Source§fn eq(&self, other: &RootActiveSessionsChangedAction) -> bool
fn eq(&self, other: &RootActiveSessionsChangedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RootActiveSessionsChangedAction
Auto Trait Implementations§
impl Freeze for RootActiveSessionsChangedAction
impl RefUnwindSafe for RootActiveSessionsChangedAction
impl Send for RootActiveSessionsChangedAction
impl Sync for RootActiveSessionsChangedAction
impl Unpin for RootActiveSessionsChangedAction
impl UnsafeUnpin for RootActiveSessionsChangedAction
impl UnwindSafe for RootActiveSessionsChangedAction
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