pub struct Tension {
pub finding_a: TensionSide,
pub finding_b: TensionSide,
pub score: f64,
pub resolved: bool,
pub superseding_id: Option<String>,
}Expand description
A pair of contradicting findings with a tension score.
Fields§
§finding_a: TensionSide§finding_b: TensionSide§score: f64§resolved: bool§superseding_id: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Tension
impl RefUnwindSafe for Tension
impl Send for Tension
impl Sync for Tension
impl Unpin for Tension
impl UnsafeUnpin for Tension
impl UnwindSafe for Tension
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