#[non_exhaustive]pub enum ConformanceCheck {
ProviderIdentity,
VisibleText,
Reasoning,
Usage,
ProviderEvents,
ErrorClassification,
}Expand description
One successfully verified provider behavior.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ProviderIdentity
The response retained the configured provider identity.
VisibleText
Visible text matched without including reasoning.
Reasoning
Reasoning was normalized into canonical reasoning blocks.
Usage
Detailed token usage matched.
ProviderEvents
Raw provider events were retained and correctly namespaced.
ErrorClassification
A failure had the expected kind, provider, and retry safety.
Trait Implementations§
Source§impl Clone for ConformanceCheck
impl Clone for ConformanceCheck
Source§fn clone(&self) -> ConformanceCheck
fn clone(&self) -> ConformanceCheck
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 moreimpl Copy for ConformanceCheck
Source§impl Debug for ConformanceCheck
impl Debug for ConformanceCheck
impl Eq for ConformanceCheck
Source§impl PartialEq for ConformanceCheck
impl PartialEq for ConformanceCheck
impl StructuralPartialEq for ConformanceCheck
Auto Trait Implementations§
impl Freeze for ConformanceCheck
impl RefUnwindSafe for ConformanceCheck
impl Send for ConformanceCheck
impl Sync for ConformanceCheck
impl Unpin for ConformanceCheck
impl UnsafeUnpin for ConformanceCheck
impl UnwindSafe for ConformanceCheck
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