pub struct ConfigurationChange {
pub item: String,
pub old_value: Option<String>,
pub new_value: String,
}Expand description
Configuration change for module implementation.
Fields§
§item: StringConfiguration item.
old_value: Option<String>Old value.
new_value: StringNew value.
Trait Implementations§
Source§impl Clone for ConfigurationChange
impl Clone for ConfigurationChange
Source§fn clone(&self) -> ConfigurationChange
fn clone(&self) -> ConfigurationChange
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConfigurationChange
impl Debug for ConfigurationChange
Source§impl<'de> Deserialize<'de> for ConfigurationChange
impl<'de> Deserialize<'de> for ConfigurationChange
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 ConfigurationChange
impl RefUnwindSafe for ConfigurationChange
impl Send for ConfigurationChange
impl Sync for ConfigurationChange
impl Unpin for ConfigurationChange
impl UnwindSafe for ConfigurationChange
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