Merge pull request #266 from robjtede/improve/flags-init

add init method for settings with flags
This commit is contained in:
Héctor Ramón 2020-04-06 22:01:16 +02:00 committed by GitHub
commit 6e386312bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,6 +34,22 @@ pub struct Settings<Flags> {
pub antialiasing: bool,
}
impl<Flags> Settings<Flags> {
/// Initialize application settings using the given data.
///
/// [`Application`]: ../trait.Application.html
pub fn with_flags(flags: Flags) -> Self {
Self {
flags,
// not using ..Default::default() struct update syntax since it is more permissive to
// allow initializing with flags without trait bound on Default
antialiasing: Default::default(),
default_font: Default::default(),
window: Default::default(),
}
}
}
#[cfg(not(target_arch = "wasm32"))]
impl<Flags> From<Settings<Flags>> for iced_winit::Settings<Flags> {
fn from(settings: Settings<Flags>) -> iced_winit::Settings<Flags> {