pub type Result<T> = std::result::Result<T, Error>;
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
#[allow(
clippy::error_impl_error,
reason = "idiomatic per-crate `Error` name; disambiguated via `bux_bwrap::Error`"
)]
pub enum Error {
#[error("bwrap binary not found (bubblewrap may not be installed on this system)")]
NotFound,
}