pub enum ReplayViolation {
MissingSignaturesForStrictProvider {
contract: ReplayContract,
formats: Vec<ReasoningFormat>,
},
}Expand description
A specific way the audited turn would fail upstream on replay.
The bridge maps each variant to a typed log/event so operators can distinguish “this provider produced no signatures and will reject the next request” from “this provider produced malformed items”.
Variants§
MissingSignaturesForStrictProvider
Provider’s contract is RequiredWithTools (or stricter), the
upcoming turn carries tool calls / tool results, and zero
signed/encrypted items were captured. Next request will be
rejected with a contract error (Gemini 3 returns
INVALID_ARGUMENT "Thought signature is not valid").
Trait Implementations§
Source§impl Clone for ReplayViolation
impl Clone for ReplayViolation
Source§fn clone(&self) -> ReplayViolation
fn clone(&self) -> ReplayViolation
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 ReplayViolation
impl Debug for ReplayViolation
Source§impl PartialEq for ReplayViolation
impl PartialEq for ReplayViolation
Source§fn eq(&self, other: &ReplayViolation) -> bool
fn eq(&self, other: &ReplayViolation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ReplayViolation
impl StructuralPartialEq for ReplayViolation
Auto Trait Implementations§
impl Freeze for ReplayViolation
impl RefUnwindSafe for ReplayViolation
impl Send for ReplayViolation
impl Sync for ReplayViolation
impl Unpin for ReplayViolation
impl UnsafeUnpin for ReplayViolation
impl UnwindSafe for ReplayViolation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.