pub struct SessionCustomizationsChangedAction {
pub customizations: Vec<Customization>,
}Expand description
The session’s customizations have changed.
Full-replacement semantics: the customizations array replaces the
previous customizations entirely.
Fields§
§customizations: Vec<Customization>Updated customization list (full replacement).
Trait Implementations§
Source§impl Clone for SessionCustomizationsChangedAction
impl Clone for SessionCustomizationsChangedAction
Source§fn clone(&self) -> SessionCustomizationsChangedAction
fn clone(&self) -> SessionCustomizationsChangedAction
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 SessionCustomizationsChangedAction
impl<'de> Deserialize<'de> for SessionCustomizationsChangedAction
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 SessionCustomizationsChangedAction
impl PartialEq for SessionCustomizationsChangedAction
Source§fn eq(&self, other: &SessionCustomizationsChangedAction) -> bool
fn eq(&self, other: &SessionCustomizationsChangedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SessionCustomizationsChangedAction
Auto Trait Implementations§
impl Freeze for SessionCustomizationsChangedAction
impl RefUnwindSafe for SessionCustomizationsChangedAction
impl Send for SessionCustomizationsChangedAction
impl Sync for SessionCustomizationsChangedAction
impl Unpin for SessionCustomizationsChangedAction
impl UnsafeUnpin for SessionCustomizationsChangedAction
impl UnwindSafe for SessionCustomizationsChangedAction
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