pub struct CommitTelemetryEvent {
pub op: &'static str,
pub commit_seq: Option<u64>,
pub durable_head_seq: Option<u64>,
pub latency_micros: u64,
pub ok: bool,
pub error: Option<String>,
}Fields§
§op: &'static str§commit_seq: Option<u64>§durable_head_seq: Option<u64>§latency_micros: u64§ok: bool§error: Option<String>Trait Implementations§
Source§impl Clone for CommitTelemetryEvent
impl Clone for CommitTelemetryEvent
Source§fn clone(&self) -> CommitTelemetryEvent
fn clone(&self) -> CommitTelemetryEvent
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 CommitTelemetryEvent
impl Debug for CommitTelemetryEvent
Source§impl PartialEq for CommitTelemetryEvent
impl PartialEq for CommitTelemetryEvent
impl Eq for CommitTelemetryEvent
impl StructuralPartialEq for CommitTelemetryEvent
Auto Trait Implementations§
impl Freeze for CommitTelemetryEvent
impl RefUnwindSafe for CommitTelemetryEvent
impl Send for CommitTelemetryEvent
impl Sync for CommitTelemetryEvent
impl Unpin for CommitTelemetryEvent
impl UnsafeUnpin for CommitTelemetryEvent
impl UnwindSafe for CommitTelemetryEvent
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