pub struct UnclassifiedRun {
pub run_id: String,
pub period_id: Option<String>,
pub completed_at: DateTime<Utc>,
pub status: RunOutcome,
pub reason: String,
}Fields§
§run_id: String§period_id: Option<String>§completed_at: DateTime<Utc>§status: RunOutcome§reason: StringWhy this run isn’t bucketed into the report’s expected periods —
e.g. legacy run with no period_id, or claims a period outside
the requested window.
Trait Implementations§
Source§impl Clone for UnclassifiedRun
impl Clone for UnclassifiedRun
Source§fn clone(&self) -> UnclassifiedRun
fn clone(&self) -> UnclassifiedRun
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UnclassifiedRun
impl Debug for UnclassifiedRun
Source§impl<'de> Deserialize<'de> for UnclassifiedRun
impl<'de> Deserialize<'de> for UnclassifiedRun
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 UnclassifiedRun
impl RefUnwindSafe for UnclassifiedRun
impl Send for UnclassifiedRun
impl Sync for UnclassifiedRun
impl Unpin for UnclassifiedRun
impl UnsafeUnpin for UnclassifiedRun
impl UnwindSafe for UnclassifiedRun
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