Struct FirejailSandbox
pub struct FirejailSandbox;Expand description
Firejail sandbox backend for Linux
Implementations§
Trait Implementations§
Source§impl Clone for FirejailSandbox
impl Clone for FirejailSandbox
Source§fn clone(&self) -> FirejailSandbox
fn clone(&self) -> FirejailSandbox
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · §fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FirejailSandbox
impl Debug for FirejailSandbox
Source§impl Default for FirejailSandbox
impl Default for FirejailSandbox
Source§fn default() -> FirejailSandbox
fn default() -> FirejailSandbox
Returns the “default value” for a type. Read more
Source§impl Sandbox for FirejailSandbox
impl Sandbox for FirejailSandbox
fn wrap_command(&self, cmd: &mut Command) -> Result<()>
fn is_available(&self) -> bool
Source§fn name(&self) -> &str
fn name(&self) -> &str
Return the human-readable name of this sandbox backend.
Used in logs and diagnostics to identify which isolation strategy is
active (e.g.,
"firejail", "bubblewrap", "none").Source§fn description(&self) -> &str
fn description(&self) -> &str
Return a brief description of the isolation guarantees this sandbox provides.
Displayed in status output and health checks so operators can verify
the active security posture.
Auto Trait Implementations§
impl Freeze for FirejailSandbox
impl RefUnwindSafe for FirejailSandbox
impl Send for FirejailSandbox
impl Sync for FirejailSandbox
impl Unpin for FirejailSandbox
impl UnsafeUnpin for FirejailSandbox
impl UnwindSafe for FirejailSandbox
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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