pub enum SandboxTransformError {
MissingLinuxSandboxExecutable,
SeatbeltUnavailable,
PlatformNotSupported,
UnsafePolicy(String),
}Expand description
Sandbox transformation error
Variants§
MissingLinuxSandboxExecutable
PlatformNotSupported
UnsafePolicy(String)
Policy is not safe (e.g., empty writable_roots or path traversal detected)
Trait Implementations§
Source§impl Debug for SandboxTransformError
impl Debug for SandboxTransformError
Source§impl Display for SandboxTransformError
impl Display for SandboxTransformError
Source§impl Error for SandboxTransformError
impl Error for SandboxTransformError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for SandboxTransformError
impl RefUnwindSafe for SandboxTransformError
impl Send for SandboxTransformError
impl Sync for SandboxTransformError
impl Unpin for SandboxTransformError
impl UnsafeUnpin for SandboxTransformError
impl UnwindSafe for SandboxTransformError
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