pub enum DecisionReplayPolicy {
Immediate,
BatchAllSuspended,
}Expand description
Policy controlling when resume decisions are replayed into tool execution.
Variants§
Immediate
Replay each resolved suspended call as soon as its decision arrives.
BatchAllSuspended
Replay only when all currently suspended calls have decisions.
Trait Implementations§
Source§impl Clone for DecisionReplayPolicy
impl Clone for DecisionReplayPolicy
Source§fn clone(&self) -> DecisionReplayPolicy
fn clone(&self) -> DecisionReplayPolicy
Returns a duplicate of the value. Read more
1.0.0 · 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 DecisionReplayPolicy
impl Debug for DecisionReplayPolicy
Source§impl PartialEq for DecisionReplayPolicy
impl PartialEq for DecisionReplayPolicy
impl Copy for DecisionReplayPolicy
impl Eq for DecisionReplayPolicy
impl StructuralPartialEq for DecisionReplayPolicy
Auto Trait Implementations§
impl Freeze for DecisionReplayPolicy
impl RefUnwindSafe for DecisionReplayPolicy
impl Send for DecisionReplayPolicy
impl Sync for DecisionReplayPolicy
impl Unpin for DecisionReplayPolicy
impl UnsafeUnpin for DecisionReplayPolicy
impl UnwindSafe for DecisionReplayPolicy
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.