pub struct SyncEventUpdate {
pub status: Option<SyncEventStatus>,
pub readings_synced: Option<u64>,
pub readings_skipped: Option<u64>,
pub status_events_synced: Option<u64>,
pub errors: Vec<String>,
pub log: Vec<String>,
pub duration_ms: Option<u64>,
}Fields§
§status: Option<SyncEventStatus>§readings_synced: Option<u64>§readings_skipped: Option<u64>Readings the API refused admission. Carried on the event rather than left to the process log, so a stream losing rows every cycle leaves a queryable trace.
status_events_synced: Option<u64>§errors: Vec<String>§log: Vec<String>§duration_ms: Option<u64>Trait Implementations§
Source§impl Debug for SyncEventUpdate
impl Debug for SyncEventUpdate
Source§impl Default for SyncEventUpdate
impl Default for SyncEventUpdate
Source§fn default() -> SyncEventUpdate
fn default() -> SyncEventUpdate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SyncEventUpdate
impl RefUnwindSafe for SyncEventUpdate
impl Send for SyncEventUpdate
impl Sync for SyncEventUpdate
impl Unpin for SyncEventUpdate
impl UnsafeUnpin for SyncEventUpdate
impl UnwindSafe for SyncEventUpdate
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