Struct tauri_bundler::bundle::WindowsSettings [−][src]
pub struct WindowsSettings { pub digest_algorithm: Option<String>, pub certificate_thumbprint: Option<String>, pub timestamp_url: Option<String>, pub wix: Option<WixSettings>, pub icon_path: PathBuf, }
Expand description
The Windows bundle settings.
Fields
digest_algorithm: Option<String>
The file digest algorithm to use for creating file signatures. Required for code signing. SHA-256 is recommended.
certificate_thumbprint: Option<String>
The SHA1 hash of the signing certificate.
timestamp_url: Option<String>
Server to use during timestamping.
wix: Option<WixSettings>
WiX configuration.
icon_path: PathBuf
The path to the application icon. Defaults to ./icons/icon.ico
.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for WindowsSettings
impl Send for WindowsSettings
impl Sync for WindowsSettings
impl Unpin for WindowsSettings
impl UnwindSafe for WindowsSettings
Blanket Implementations
Mutably borrows from an owned value. Read more