pub struct CompareRow {
pub session: String,
pub prompt: String,
pub stage: String,
pub native: String,
pub via: String,
pub verdict: Verdict,
}Expand description
One native-chooser pick (a use event) joined to ski’s ranking on the same
prompt (the matching recommend event).
Fields§
§session: String§prompt: String§stage: String§native: StringThe skill the native chooser picked.
via: String§verdict: VerdictTrait Implementations§
Source§impl Debug for CompareRow
impl Debug for CompareRow
Source§impl PartialEq for CompareRow
impl PartialEq for CompareRow
Source§fn eq(&self, other: &CompareRow) -> bool
fn eq(&self, other: &CompareRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CompareRow
Auto Trait Implementations§
impl Freeze for CompareRow
impl RefUnwindSafe for CompareRow
impl Send for CompareRow
impl Sync for CompareRow
impl Unpin for CompareRow
impl UnsafeUnpin for CompareRow
impl UnwindSafe for CompareRow
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more