pub struct SessionCustomizationRemovedAction {
pub id: String,
}Expand description
Removes a customization by id.
Searches every container and its children for the entry. If the entry is a container, its children are removed with it. Is a no-op when no matching id is found.
Fields§
§id: StringThe id of the customization to remove.
Trait Implementations§
Source§impl Clone for SessionCustomizationRemovedAction
impl Clone for SessionCustomizationRemovedAction
Source§fn clone(&self) -> SessionCustomizationRemovedAction
fn clone(&self) -> SessionCustomizationRemovedAction
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 SessionCustomizationRemovedAction
impl<'de> Deserialize<'de> for SessionCustomizationRemovedAction
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 SessionCustomizationRemovedAction
impl PartialEq for SessionCustomizationRemovedAction
Source§fn eq(&self, other: &SessionCustomizationRemovedAction) -> bool
fn eq(&self, other: &SessionCustomizationRemovedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SessionCustomizationRemovedAction
Auto Trait Implementations§
impl Freeze for SessionCustomizationRemovedAction
impl RefUnwindSafe for SessionCustomizationRemovedAction
impl Send for SessionCustomizationRemovedAction
impl Sync for SessionCustomizationRemovedAction
impl Unpin for SessionCustomizationRemovedAction
impl UnsafeUnpin for SessionCustomizationRemovedAction
impl UnwindSafe for SessionCustomizationRemovedAction
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