pub struct ApprovalContext<'a> {
pub request: &'a ToolCallRequest,
pub constraints: &'a [Constraint],
pub policy_id: &'a str,
pub trusted_approvers: &'a [PublicKey],
pub presented_token: Option<&'a ApprovalToken>,
pub force_approval: bool,
pub approval_id_override: Option<String>,
}Expand description
Context passed into ApprovalGuard::evaluate.
Fields§
§request: &'a ToolCallRequest§constraints: &'a [Constraint]§policy_id: &'a str§trusted_approvers: &'a [PublicKey]Public keys trusted to sign the approval token for this request.
presented_token: Option<&'a ApprovalToken>Approval token presented by the caller, if any.
force_approval: boolWhen true, force the guard into the pending path regardless
of constraints. Used by integration tests and by host adapters
that decided out-of-band that the call needs approval.
approval_id_override: Option<String>Optional deterministic id for the generated approval request.
Auto Trait Implementations§
impl<'a> Freeze for ApprovalContext<'a>
impl<'a> RefUnwindSafe for ApprovalContext<'a>
impl<'a> Send for ApprovalContext<'a>
impl<'a> Sync for ApprovalContext<'a>
impl<'a> Unpin for ApprovalContext<'a>
impl<'a> UnsafeUnpin for ApprovalContext<'a>
impl<'a> UnwindSafe for ApprovalContext<'a>
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