pub enum ComboSpec {
GroundGate {
query: String,
min_band_text: String,
min_band: Confidence,
expected_pass: bool,
},
VerifyReceipt {
file: String,
line_start: usize,
line_end: Option<usize>,
quote: Option<String>,
expected_holds: bool,
},
VocabLoop {
query: String,
expected_top: String,
target_node: Option<String>,
min_band_text: String,
min_band: Confidence,
expected_pass: bool,
},
GapPropose {
query: String,
expected_pass: bool,
},
AunRepair {
query: String,
expected_pass: bool,
},
RynReconcile {
query: String,
expected_pass: bool,
},
VyreQueue {
query: String,
expected_pass: bool,
},
TrustReview {
query: String,
expected_pass: bool,
},
AetherStale {
query: String,
min_band_text: String,
min_band: Confidence,
expected_pass: bool,
},
NavigationPacket {
tool: String,
query: String,
expected_route: Option<String>,
expected_nodes: Vec<String>,
expected_partition: Option<String>,
expected_pass: bool,
},
GlyphNavigation {
query: String,
expected_pass: bool,
},
}Variants§
GroundGate
VerifyReceipt
Fields
VocabLoop
Fields
§
min_band: ConfidenceGapPropose
AunRepair
RynReconcile
VyreQueue
TrustReview
AetherStale
Implementations§
Source§impl ComboSpec
impl ComboSpec
pub fn kind(&self) -> ComboKind
pub fn from_golden(raw: &GoldenCase) -> Result<Self, ComboSpecError>
Trait Implementations§
impl Eq for ComboSpec
impl StructuralPartialEq for ComboSpec
Auto Trait Implementations§
impl Freeze for ComboSpec
impl RefUnwindSafe for ComboSpec
impl Send for ComboSpec
impl Sync for ComboSpec
impl Unpin for ComboSpec
impl UnsafeUnpin for ComboSpec
impl UnwindSafe for ComboSpec
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