pub enum ProbeOutcome {
Supported,
Unsupported,
Errored,
}Expand description
The result of one capability probe.
Variants§
Supported
The backend ran the probe and honored the constraint.
Unsupported
The backend ran the probe but did not honor the constraint (no tool call
emitted under tool_choice = Required, or output that violated the schema).
A definitive capability verdict.
Errored
The probe call itself failed (transport error, cold start, timeout). NOT a capability verdict — the backend may be fine once warm.
Trait Implementations§
Source§impl Clone for ProbeOutcome
impl Clone for ProbeOutcome
Source§fn clone(&self) -> ProbeOutcome
fn clone(&self) -> ProbeOutcome
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 ProbeOutcome
impl Debug for ProbeOutcome
impl Eq for ProbeOutcome
Source§impl PartialEq for ProbeOutcome
impl PartialEq for ProbeOutcome
impl StructuralPartialEq for ProbeOutcome
Auto Trait Implementations§
impl Freeze for ProbeOutcome
impl RefUnwindSafe for ProbeOutcome
impl Send for ProbeOutcome
impl Sync for ProbeOutcome
impl Unpin for ProbeOutcome
impl UnsafeUnpin for ProbeOutcome
impl UnwindSafe for ProbeOutcome
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