pub struct WrapResult {
pub command: String,
pub log_tag: Option<String>,
pub warnings: Vec<String>,
}Expand description
Result of wrapping a command with sandbox.
Fields§
§command: StringThe wrapped command string.
log_tag: Option<String>Log tag for violation monitoring (macOS only).
warnings: Vec<String>Warnings generated during wrapping.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WrapResult
impl RefUnwindSafe for WrapResult
impl Send for WrapResult
impl Sync for WrapResult
impl Unpin for WrapResult
impl UnwindSafe for WrapResult
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