pub struct SemanticPair {
pub id_a: String,
pub id_b: String,
pub score: f64,
pub reason: String,
pub assertion_a: String,
pub assertion_b: String,
}Fields§
§id_a: String§id_b: String§score: f64§reason: String§assertion_a: String§assertion_b: StringTrait Implementations§
Source§impl Debug for SemanticPair
impl Debug for SemanticPair
Auto Trait Implementations§
impl Freeze for SemanticPair
impl RefUnwindSafe for SemanticPair
impl Send for SemanticPair
impl Sync for SemanticPair
impl Unpin for SemanticPair
impl UnsafeUnpin for SemanticPair
impl UnwindSafe for SemanticPair
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