pub struct SandboxFallbackContext {
pub tool_name: String,
pub arguments: Value,
pub summary_fields: Vec<String>,
}Expand description
A redacted, typed request for a sandbox fallback decision.
Fields§
§tool_name: StringThe tool requiring the fallback.
arguments: ValueObserver-safe tool input for the approval surface.
summary_fields: Vec<String>Stable summary fields for display or audit projection.
Trait Implementations§
Source§impl Clone for SandboxFallbackContext
impl Clone for SandboxFallbackContext
Source§fn clone(&self) -> SandboxFallbackContext
fn clone(&self) -> SandboxFallbackContext
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SandboxFallbackContext
impl Debug for SandboxFallbackContext
Source§impl PartialEq for SandboxFallbackContext
impl PartialEq for SandboxFallbackContext
impl StructuralPartialEq for SandboxFallbackContext
Auto Trait Implementations§
impl Freeze for SandboxFallbackContext
impl RefUnwindSafe for SandboxFallbackContext
impl Send for SandboxFallbackContext
impl Sync for SandboxFallbackContext
impl Unpin for SandboxFallbackContext
impl UnsafeUnpin for SandboxFallbackContext
impl UnwindSafe for SandboxFallbackContext
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