pub struct SpawnEntitlement {
pub mode: SpawnMode,
pub allowed: Vec<String>,
pub allowed_dirs: Vec<String>,
}Fields§
§mode: SpawnMode§allowed: Vec<String>§allowed_dirs: Vec<String>Directories whose entire subtree may be exec’d — the “build lane”.
allowed cannot express a toolchain that compiles its own
executables: a Rust build execs target/debug/build/<crate>-<hash>/ build-script-build, proc-macro shims, and freshly linked test
binaries, all at paths that do not exist until the build creates them
and change on every dependency bump. Without this an agent granted
cargo could compile nothing and could never verify its own work.
Grant narrowly — a build-output directory, not a source tree or a home directory. Everything under it becomes exec’able, so the tree should be one the agent already has write access to and nothing else depends on. Filesystem and network entitlements still bound what the executed code can reach.
Trait Implementations§
Source§impl Clone for SpawnEntitlement
impl Clone for SpawnEntitlement
Source§fn clone(&self) -> SpawnEntitlement
fn clone(&self) -> SpawnEntitlement
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 SpawnEntitlement
impl Debug for SpawnEntitlement
Source§impl<'de> Deserialize<'de> for SpawnEntitlement
impl<'de> Deserialize<'de> for SpawnEntitlement
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 SpawnEntitlement
impl PartialEq for SpawnEntitlement
Source§impl Serialize for SpawnEntitlement
impl Serialize for SpawnEntitlement
impl StructuralPartialEq for SpawnEntitlement
Auto Trait Implementations§
impl Freeze for SpawnEntitlement
impl RefUnwindSafe for SpawnEntitlement
impl Send for SpawnEntitlement
impl Sync for SpawnEntitlement
impl Unpin for SpawnEntitlement
impl UnsafeUnpin for SpawnEntitlement
impl UnwindSafe for SpawnEntitlement
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