pub struct AppBundleOptions {
pub bundle_identifier: String,
pub bundle_name: String,
pub bundle_display_name: String,
pub bundle_version: String,
pub bundle_short_version_string: String,
pub minimum_system_version: String,
pub executable_path: PathBuf,
pub icon_file: PathBuf,
pub info_plist_template: Option<PathBuf>,
pub info_plist_additional_args: HashMap<String, String>,
}
Fields§
§bundle_identifier: String
§bundle_name: String
§bundle_display_name: String
§bundle_version: String
§bundle_short_version_string: String
§minimum_system_version: String
§executable_path: PathBuf
§icon_file: PathBuf
§info_plist_template: Option<PathBuf>
§info_plist_additional_args: HashMap<String, String>
Trait Implementations§
Source§impl Clone for AppBundleOptions
impl Clone for AppBundleOptions
Source§fn clone(&self) -> AppBundleOptions
fn clone(&self) -> AppBundleOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AppBundleOptions
impl Debug for AppBundleOptions
Auto Trait Implementations§
impl Freeze for AppBundleOptions
impl RefUnwindSafe for AppBundleOptions
impl Send for AppBundleOptions
impl Sync for AppBundleOptions
impl Unpin for AppBundleOptions
impl UnwindSafe for AppBundleOptions
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