pub struct ProbeFailureInsert<'a> {
pub rollout_id: &'a str,
pub host_id: &'a str,
pub probe_name: &'a str,
pub control_id: Option<&'a str>,
pub framework: Option<&'a str>,
pub observed_at: DateTime<Utc>,
}Expand description
One probe_failures row insert. Borrowed for ergonomics — the
applier’s hot path passes references off the inbound payload.
Fields§
§rollout_id: &'a str§host_id: &'a str§probe_name: &'a str§control_id: Option<&'a str>§framework: Option<&'a str>§observed_at: DateTime<Utc>Trait Implementations§
Source§impl<'a> Clone for ProbeFailureInsert<'a>
impl<'a> Clone for ProbeFailureInsert<'a>
Source§fn clone(&self) -> ProbeFailureInsert<'a>
fn clone(&self) -> ProbeFailureInsert<'a>
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<'a> Freeze for ProbeFailureInsert<'a>
impl<'a> RefUnwindSafe for ProbeFailureInsert<'a>
impl<'a> Send for ProbeFailureInsert<'a>
impl<'a> Sync for ProbeFailureInsert<'a>
impl<'a> Unpin for ProbeFailureInsert<'a>
impl<'a> UnwindSafe for ProbeFailureInsert<'a>
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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