pub struct EnvClassification {
pub class: &'static str,
pub confidence: f64,
}Expand description
Result of classifying a failure’s stderr/output.
Fields§
§class: &'static str“workflow” | “env”
confidence: f64Trait Implementations§
Source§impl Clone for EnvClassification
impl Clone for EnvClassification
Source§fn clone(&self) -> EnvClassification
fn clone(&self) -> EnvClassification
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 EnvClassification
impl Debug for EnvClassification
Source§impl PartialEq for EnvClassification
impl PartialEq for EnvClassification
Source§fn eq(&self, other: &EnvClassification) -> bool
fn eq(&self, other: &EnvClassification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EnvClassification
Auto Trait Implementations§
impl Freeze for EnvClassification
impl RefUnwindSafe for EnvClassification
impl Send for EnvClassification
impl Sync for EnvClassification
impl Unpin for EnvClassification
impl UnsafeUnpin for EnvClassification
impl UnwindSafe for EnvClassification
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