Struct tauri_bundler::bundle::DebianSettings [−][src]
pub struct DebianSettings { pub depends: Option<Vec<String>>, pub use_bootstrapper: Option<bool>, pub files: HashMap<PathBuf, PathBuf>, }
Expand description
The Linux debian bundle settings.
Fields
depends: Option<Vec<String>>
the list of debian dependencies.
use_bootstrapper: Option<bool>
whether we should use the bootstrap script on debian or not.
this script goal is to allow your app to access environment variables e.g $PATH.
without it, you can’t run some applications installed by the user.
files: HashMap<PathBuf, PathBuf>
List of custom files to add to the deb package. Maps the path on the debian package to the path of the file to include (relative to the current working directory).
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for DebianSettings
impl Send for DebianSettings
impl Sync for DebianSettings
impl Unpin for DebianSettings
impl UnwindSafe for DebianSettings
Blanket Implementations
Mutably borrows from an owned value. Read more