pub struct MultiThemeBuilder<DS> { /* private fields */ }Expand description
Builder for MultiTheme
Construct via MultiTheme::builder.
Implementations§
Source§impl<DS> MultiThemeBuilder<DS>
impl<DS> MultiThemeBuilder<DS>
Sourcepub fn add<S: ToString, T>(self, name: S, theme: T) -> Selfwhere
DS: DrawSharedImpl,
T: ThemeDst<DS> + 'static,
pub fn add<S: ToString, T>(self, name: S, theme: T) -> Selfwhere
DS: DrawSharedImpl,
T: ThemeDst<DS> + 'static,
Add a theme
Sourcepub fn try_build(self) -> Option<MultiTheme<DS>>
pub fn try_build(self) -> Option<MultiTheme<DS>>
Build
Returns None if no themes were added.
Sourcepub fn build(self) -> MultiTheme<DS>
pub fn build(self) -> MultiTheme<DS>
Build
Panics if no themes were added.
Auto Trait Implementations§
impl<DS> Freeze for MultiThemeBuilder<DS>
impl<DS> !RefUnwindSafe for MultiThemeBuilder<DS>
impl<DS> !Send for MultiThemeBuilder<DS>
impl<DS> !Sync for MultiThemeBuilder<DS>
impl<DS> Unpin for MultiThemeBuilder<DS>
impl<DS> !UnwindSafe for MultiThemeBuilder<DS>
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<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
Source§fn try_cast_approx(self) -> Result<T, Error>
fn try_cast_approx(self) -> Result<T, Error>
Source§fn cast_approx(self) -> T
fn cast_approx(self) -> T
Source§impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
Source§fn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
Source§fn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
Source§fn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more