pub struct ConfigSetPayload<'a> {
pub key: &'a str,
pub value: String,
}Expand description
JSON payload for config set — the key/value that was just persisted.
Fields§
§key: &'a strConfiguration key that was modified.
value: StringNew value (sensitive values are masked).
Trait Implementations§
Source§impl<'a> Debug for ConfigSetPayload<'a>
impl<'a> Debug for ConfigSetPayload<'a>
Auto Trait Implementations§
impl<'a> Freeze for ConfigSetPayload<'a>
impl<'a> RefUnwindSafe for ConfigSetPayload<'a>
impl<'a> Send for ConfigSetPayload<'a>
impl<'a> Sync for ConfigSetPayload<'a>
impl<'a> Unpin for ConfigSetPayload<'a>
impl<'a> UnsafeUnpin for ConfigSetPayload<'a>
impl<'a> UnwindSafe for ConfigSetPayload<'a>
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