pub struct SessionSessionLimitsChangedData {
pub session_limits: Option<SessionLimitsConfig>,
}Expand description
Session event “session.session_limits_changed”. Session limits update details. Null clears the limits.
Fields§
§session_limits: Option<SessionLimitsConfig>Current session limits, or null when no limits are active
Trait Implementations§
Source§impl Clone for SessionSessionLimitsChangedData
impl Clone for SessionSessionLimitsChangedData
Source§fn clone(&self) -> SessionSessionLimitsChangedData
fn clone(&self) -> SessionSessionLimitsChangedData
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 Default for SessionSessionLimitsChangedData
impl Default for SessionSessionLimitsChangedData
Source§fn default() -> SessionSessionLimitsChangedData
fn default() -> SessionSessionLimitsChangedData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionSessionLimitsChangedData
impl<'de> Deserialize<'de> for SessionSessionLimitsChangedData
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
Auto Trait Implementations§
impl Freeze for SessionSessionLimitsChangedData
impl RefUnwindSafe for SessionSessionLimitsChangedData
impl Send for SessionSessionLimitsChangedData
impl Sync for SessionSessionLimitsChangedData
impl Unpin for SessionSessionLimitsChangedData
impl UnsafeUnpin for SessionSessionLimitsChangedData
impl UnwindSafe for SessionSessionLimitsChangedData
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