Struct tauri_utils::config::DebConfig
source · pub struct DebConfig {
pub depends: Option<Vec<String>>,
pub files: HashMap<PathBuf, PathBuf>,
pub desktop_template: Option<PathBuf>,
}
Expand description
Configuration for Debian (.deb) bundles.
Fields§
§depends: Option<Vec<String>>
The list of deb dependencies your application relies on.
files: HashMap<PathBuf, PathBuf>
The files to include on the package.
desktop_template: Option<PathBuf>
Path to a custom desktop file Handlebars template.
Available variables: categories
, comment
(optional), exec
, icon
and name
.
Trait Implementations§
source§impl<'de> Deserialize<'de> for DebConfig
impl<'de> Deserialize<'de> for DebConfig
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for DebConfig
impl PartialEq for DebConfig
impl Eq for DebConfig
impl StructuralEq for DebConfig
impl StructuralPartialEq for DebConfig
Auto Trait Implementations§
impl RefUnwindSafe for DebConfig
impl Send for DebConfig
impl Sync for DebConfig
impl Unpin for DebConfig
impl UnwindSafe for DebConfig
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.