pub struct SkewWarning {
pub agent_id: String,
pub skew_seconds: i64,
pub event_timestamp: DateTime<Utc>,
}Expand description
Warning about clock skew detected during compaction.
Fields§
§agent_id: String§skew_seconds: i64§event_timestamp: DateTime<Utc>Trait Implementations§
Source§impl Clone for SkewWarning
impl Clone for SkewWarning
Source§fn clone(&self) -> SkewWarning
fn clone(&self) -> SkewWarning
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 SkewWarning
impl Debug for SkewWarning
Source§impl<'de> Deserialize<'de> for SkewWarning
impl<'de> Deserialize<'de> for SkewWarning
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 SkewWarning
impl RefUnwindSafe for SkewWarning
impl Send for SkewWarning
impl Sync for SkewWarning
impl Unpin for SkewWarning
impl UnsafeUnpin for SkewWarning
impl UnwindSafe for SkewWarning
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