pub struct GuardContext<'a> {
pub request: &'a ToolCallRequest,
pub scope: &'a ChioScope,
pub agent_id: &'a AgentId,
pub server_id: &'a ServerId,
pub session_filesystem_roots: Option<&'a [String]>,
pub matched_grant_index: Option<usize>,
}Expand description
Context passed to guards during evaluation.
Fields§
§request: &'a ToolCallRequestThe tool call request being evaluated.
scope: &'a ChioScopeThe verified capability scope.
agent_id: &'a AgentIdThe agent making the request.
server_id: &'a ServerIdThe target server.
session_filesystem_roots: Option<&'a [String]>Session-scoped enforceable filesystem roots, when the request is being evaluated through the supported session-backed runtime path.
matched_grant_index: Option<usize>Index of the matched grant in the capability’s scope, populated by check_and_increment_budget before guards run.
Auto Trait Implementations§
impl<'a> Freeze for GuardContext<'a>
impl<'a> RefUnwindSafe for GuardContext<'a>
impl<'a> Send for GuardContext<'a>
impl<'a> Sync for GuardContext<'a>
impl<'a> Unpin for GuardContext<'a>
impl<'a> UnsafeUnpin for GuardContext<'a>
impl<'a> UnwindSafe for GuardContext<'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