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<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more