pub struct EnrichmentStepStatus {
pub step: String,
pub status: String,
pub error: Option<String>,
pub attempts: u32,
}Expand description
Per-step enrichment outcome for diagnostics.
Fields§
§step: String§status: String§error: Option<String>§attempts: u32Trait Implementations§
Source§impl Clone for EnrichmentStepStatus
impl Clone for EnrichmentStepStatus
Source§fn clone(&self) -> EnrichmentStepStatus
fn clone(&self) -> EnrichmentStepStatus
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 EnrichmentStepStatus
impl Debug for EnrichmentStepStatus
Source§impl<'de> Deserialize<'de> for EnrichmentStepStatus
impl<'de> Deserialize<'de> for EnrichmentStepStatus
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 EnrichmentStepStatus
impl RefUnwindSafe for EnrichmentStepStatus
impl Send for EnrichmentStepStatus
impl Sync for EnrichmentStepStatus
impl Unpin for EnrichmentStepStatus
impl UnsafeUnpin for EnrichmentStepStatus
impl UnwindSafe for EnrichmentStepStatus
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