pub struct WizardSettings { /* private fields */ }Implementations§
Source§impl WizardSettings
impl WizardSettings
pub fn read_from<R>(reader: R, version: InnoVersion) -> Result<Self>where
R: Read,
Sourcepub const fn image_alpha_format(&self) -> ImageAlphaFormat
pub const fn image_alpha_format(&self) -> ImageAlphaFormat
Returns the image alpha format.
Sourcepub const fn image_back_color(&self) -> Color
pub const fn image_back_color(&self) -> Color
Returns the image background color.
Sourcepub const fn small_image_back_color(&self) -> Color
pub const fn small_image_back_color(&self) -> Color
Returns the small image background color.
Sourcepub const fn image_back_color_dynamic_dark(&self) -> Color
pub const fn image_back_color_dynamic_dark(&self) -> Color
Returns the image background color used in dark mode when a dynamic theme is enabled.
Sourcepub const fn small_image_back_color_dynamic_dark(&self) -> Color
pub const fn small_image_back_color_dynamic_dark(&self) -> Color
Returns the small image background color used in dark mode when a dynamic theme is enabled.
Sourcepub const fn image_opacity(&self) -> Option<u8>
pub const fn image_opacity(&self) -> Option<u8>
Returns the image opacity.
Sourcepub const fn back_image_opacity(&self) -> Option<u8>
pub const fn back_image_opacity(&self) -> Option<u8>
Returns the background image opacity.
Added in Inno Setup 6.7.0.
Sourcepub const fn size_percent(&self) -> WizardSizePercent
pub const fn size_percent(&self) -> WizardSizePercent
Returns the wizard size percent
Sourcepub const fn style(&self) -> WizardStyle
pub const fn style(&self) -> WizardStyle
Returns the wizard style.
Trait Implementations§
Source§impl Clone for WizardSettings
impl Clone for WizardSettings
Source§fn clone(&self) -> WizardSettings
fn clone(&self) -> WizardSettings
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for WizardSettings
Source§impl Default for WizardSettings
impl Default for WizardSettings
Source§fn default() -> WizardSettings
fn default() -> WizardSettings
Returns the “default value” for a type. Read more
impl Eq for WizardSettings
Source§impl PartialEq for WizardSettings
impl PartialEq for WizardSettings
impl StructuralPartialEq for WizardSettings
Auto Trait Implementations§
impl Freeze for WizardSettings
impl RefUnwindSafe for WizardSettings
impl Send for WizardSettings
impl Sync for WizardSettings
impl Unpin for WizardSettings
impl UnsafeUnpin for WizardSettings
impl UnwindSafe for WizardSettings
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more