pub struct TensionSide {
pub id: String,
pub assertion: String,
pub confidence: f64,
pub assertion_type: String,
pub citation_count: u64,
pub contradicts_count: usize,
}Expand description
One side of a contradiction.
Fields§
§id: String§assertion: String§confidence: f64§assertion_type: String§citation_count: u64§contradicts_count: usizeTrait Implementations§
Source§impl Clone for TensionSide
impl Clone for TensionSide
Source§fn clone(&self) -> TensionSide
fn clone(&self) -> TensionSide
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 moreAuto Trait Implementations§
impl Freeze for TensionSide
impl RefUnwindSafe for TensionSide
impl Send for TensionSide
impl Sync for TensionSide
impl Unpin for TensionSide
impl UnsafeUnpin for TensionSide
impl UnwindSafe for TensionSide
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