pub struct SessionIsArchivedChangedAction {
pub is_archived: bool,
}Expand description
The archived state of the session changed.
Dispatched by a client to archive a session (e.g. the task is complete) or to unarchive it.
Fields§
§is_archived: boolWhether the session is archived
Trait Implementations§
Source§impl Clone for SessionIsArchivedChangedAction
impl Clone for SessionIsArchivedChangedAction
Source§fn clone(&self) -> SessionIsArchivedChangedAction
fn clone(&self) -> SessionIsArchivedChangedAction
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 SessionIsArchivedChangedAction
impl<'de> Deserialize<'de> for SessionIsArchivedChangedAction
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 SessionIsArchivedChangedAction
impl PartialEq for SessionIsArchivedChangedAction
Source§fn eq(&self, other: &SessionIsArchivedChangedAction) -> bool
fn eq(&self, other: &SessionIsArchivedChangedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SessionIsArchivedChangedAction
Auto Trait Implementations§
impl Freeze for SessionIsArchivedChangedAction
impl RefUnwindSafe for SessionIsArchivedChangedAction
impl Send for SessionIsArchivedChangedAction
impl Sync for SessionIsArchivedChangedAction
impl Unpin for SessionIsArchivedChangedAction
impl UnsafeUnpin for SessionIsArchivedChangedAction
impl UnwindSafe for SessionIsArchivedChangedAction
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