pub struct CorrelationExplanation {
pub commit_sha: String,
pub bead_id: String,
pub confidence: f64,
pub confidence_pct: u32,
pub level: String,
pub method: String,
pub signals: Vec<CorrelationSignal>,
pub total_weight: u32,
pub summary: String,
pub recommendation: String,
}Fields§
§commit_sha: String§bead_id: String§confidence: f64§confidence_pct: u32§level: String§method: String§signals: Vec<CorrelationSignal>§total_weight: u32§summary: String§recommendation: StringTrait Implementations§
Source§impl Clone for CorrelationExplanation
impl Clone for CorrelationExplanation
Source§fn clone(&self) -> CorrelationExplanation
fn clone(&self) -> CorrelationExplanation
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 CorrelationExplanation
impl Debug for CorrelationExplanation
Auto Trait Implementations§
impl Freeze for CorrelationExplanation
impl RefUnwindSafe for CorrelationExplanation
impl Send for CorrelationExplanation
impl Sync for CorrelationExplanation
impl Unpin for CorrelationExplanation
impl UnsafeUnpin for CorrelationExplanation
impl UnwindSafe for CorrelationExplanation
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