pub struct ConfigHistoryEntry {
pub timestamp: String,
pub changes: Vec<String>,
pub backup_id: String,
}Expand description
Configuration history entry
Fields§
§timestamp: StringEntry timestamp
changes: Vec<String>Configuration changes made
backup_id: StringBackup ID
Trait Implementations§
Source§impl Clone for ConfigHistoryEntry
impl Clone for ConfigHistoryEntry
Source§fn clone(&self) -> ConfigHistoryEntry
fn clone(&self) -> ConfigHistoryEntry
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 moreAuto Trait Implementations§
impl Freeze for ConfigHistoryEntry
impl RefUnwindSafe for ConfigHistoryEntry
impl Send for ConfigHistoryEntry
impl Sync for ConfigHistoryEntry
impl Unpin for ConfigHistoryEntry
impl UnwindSafe for ConfigHistoryEntry
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