pub struct HarnessSelection {
pub harness: String,
pub model: String,
pub effort: Effort,
}Expand description
A concrete reviewer/arbiter selection: harness + model + reasoning effort.
Fields§
§harness: String§model: String§effort: EffortImplementations§
Trait Implementations§
Source§impl Clone for HarnessSelection
impl Clone for HarnessSelection
Source§fn clone(&self) -> HarnessSelection
fn clone(&self) -> HarnessSelection
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 HarnessSelection
impl Debug for HarnessSelection
Source§impl<'de> Deserialize<'de> for HarnessSelection
impl<'de> Deserialize<'de> for HarnessSelection
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 HarnessSelection
Source§impl PartialEq for HarnessSelection
impl PartialEq for HarnessSelection
Source§fn eq(&self, other: &HarnessSelection) -> bool
fn eq(&self, other: &HarnessSelection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HarnessSelection
impl Serialize for HarnessSelection
impl StructuralPartialEq for HarnessSelection
Auto Trait Implementations§
impl Freeze for HarnessSelection
impl RefUnwindSafe for HarnessSelection
impl Send for HarnessSelection
impl Sync for HarnessSelection
impl Unpin for HarnessSelection
impl UnsafeUnpin for HarnessSelection
impl UnwindSafe for HarnessSelection
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