pub struct ConfigChangeDetail {
pub id: String,
pub content: String,
pub metadata: Option<Value>,
}Expand description
Detailed config change with full content
Fields§
§id: String§content: String§metadata: Option<Value>Trait Implementations§
Source§impl Clone for ConfigChangeDetail
impl Clone for ConfigChangeDetail
Source§fn clone(&self) -> ConfigChangeDetail
fn clone(&self) -> ConfigChangeDetail
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 ConfigChangeDetail
impl Debug for ConfigChangeDetail
Source§impl<'de> Deserialize<'de> for ConfigChangeDetail
impl<'de> Deserialize<'de> for ConfigChangeDetail
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 ConfigChangeDetail
impl RefUnwindSafe for ConfigChangeDetail
impl Send for ConfigChangeDetail
impl Sync for ConfigChangeDetail
impl Unpin for ConfigChangeDetail
impl UnwindSafe for ConfigChangeDetail
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