pub struct DiffEntry {
pub key: String,
pub kind: DiffKind,
pub old_value: Option<String>,
pub new_value: Option<String>,
}Expand description
A single entry in a secret diff.
Fields§
§key: String§kind: DiffKind§old_value: Option<String>§new_value: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiffEntry
impl RefUnwindSafe for DiffEntry
impl Send for DiffEntry
impl Sync for DiffEntry
impl Unpin for DiffEntry
impl UnsafeUnpin for DiffEntry
impl UnwindSafe for DiffEntry
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