pub enum CapturePolicy {
AuthorizeOnly,
CaptureImmediately,
}Expand description
Decision choices for capture policy in the agent tool workflow; each value routes reviewed source facts to the right queue, draft, or staff gate.
Variants§
AuthorizeOnly
Selects authorize only for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
CaptureImmediately
Selects capture immediately for the agent tool decision model so the app can choose a review, evidence, or draft path without taking live action.
Trait Implementations§
Source§impl Clone for CapturePolicy
impl Clone for CapturePolicy
Source§fn clone(&self) -> CapturePolicy
fn clone(&self) -> CapturePolicy
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 CapturePolicy
impl Debug for CapturePolicy
Source§impl<'de> Deserialize<'de> for CapturePolicy
impl<'de> Deserialize<'de> for CapturePolicy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CapturePolicy
impl PartialEq for CapturePolicy
Source§impl Serialize for CapturePolicy
impl Serialize for CapturePolicy
impl Copy for CapturePolicy
impl Eq for CapturePolicy
impl StructuralPartialEq for CapturePolicy
Auto Trait Implementations§
impl Freeze for CapturePolicy
impl RefUnwindSafe for CapturePolicy
impl Send for CapturePolicy
impl Sync for CapturePolicy
impl Unpin for CapturePolicy
impl UnsafeUnpin for CapturePolicy
impl UnwindSafe for CapturePolicy
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