pub struct SandboxFilesystemPolicyDetails {
pub denied_paths: Vec<String>,
pub readonly_paths: Vec<String>,
pub readwrite_paths: Vec<String>,
}Expand description
Effective sandbox filesystem rules, in policy order. Only populated when content capture is enabled, since these are real host paths.
Fields§
§denied_paths: Vec<String>Paths the sandboxed process may not access at all
readonly_paths: Vec<String>Paths the sandboxed process may read but not write
readwrite_paths: Vec<String>Paths the sandboxed process may read and write
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SandboxFilesystemPolicyDetails
impl<'de> Deserialize<'de> for SandboxFilesystemPolicyDetails
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
Auto Trait Implementations§
impl Freeze for SandboxFilesystemPolicyDetails
impl RefUnwindSafe for SandboxFilesystemPolicyDetails
impl Send for SandboxFilesystemPolicyDetails
impl Sync for SandboxFilesystemPolicyDetails
impl Unpin for SandboxFilesystemPolicyDetails
impl UnsafeUnpin for SandboxFilesystemPolicyDetails
impl UnwindSafe for SandboxFilesystemPolicyDetails
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