pub struct DriftEvent {
pub id: i64,
pub timestamp: String,
pub resource_type: String,
pub resource_id: String,
pub expected: Option<String>,
pub actual: Option<String>,
pub resolved_by: Option<i64>,
pub source: String,
}Expand description
A recorded drift event.
Fields§
§id: i64§timestamp: String§resource_type: String§resource_id: String§expected: Option<String>§actual: Option<String>§resolved_by: Option<i64>§source: StringTrait Implementations§
Source§impl Clone for DriftEvent
impl Clone for DriftEvent
Source§fn clone(&self) -> DriftEvent
fn clone(&self) -> DriftEvent
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 DriftEvent
impl Debug for DriftEvent
Auto Trait Implementations§
impl Freeze for DriftEvent
impl RefUnwindSafe for DriftEvent
impl Send for DriftEvent
impl Sync for DriftEvent
impl Unpin for DriftEvent
impl UnsafeUnpin for DriftEvent
impl UnwindSafe for DriftEvent
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