pub struct JudgeMatch {
pub left: String,
pub right: String,
}Expand description
A pairwise judge assignment carried to the SDK on a tournament judge’s WorkflowSpawnInfo:
the two entrant agent ids whose produced outputs are to be compared. The SDK maps each id back
to that entrant’s candidate and asks the judge which is better.
Fields§
§left: String§right: StringTrait Implementations§
Source§impl Clone for JudgeMatch
impl Clone for JudgeMatch
Source§fn clone(&self) -> JudgeMatch
fn clone(&self) -> JudgeMatch
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 moreSource§impl Debug for JudgeMatch
impl Debug for JudgeMatch
Source§impl<'de> Deserialize<'de> for JudgeMatch
impl<'de> Deserialize<'de> for JudgeMatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for JudgeMatch
Source§impl PartialEq for JudgeMatch
impl PartialEq for JudgeMatch
Source§fn eq(&self, other: &JudgeMatch) -> bool
fn eq(&self, other: &JudgeMatch) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for JudgeMatch
impl Serialize for JudgeMatch
impl StructuralPartialEq for JudgeMatch
Auto Trait Implementations§
impl Freeze for JudgeMatch
impl RefUnwindSafe for JudgeMatch
impl Send for JudgeMatch
impl Sync for JudgeMatch
impl Unpin for JudgeMatch
impl UnsafeUnpin for JudgeMatch
impl UnwindSafe for JudgeMatch
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