pub struct Styles { /* private fields */ }
Expand description
A collection of Style
s.
Implementations§
Source§impl Styles
impl Styles
Sourcepub fn contains<T>(&self) -> boolwhere
T: Any,
pub fn contains<T>(&self) -> boolwhere
T: Any,
Check if a style is contained in the collection.
Sourcepub fn insert<T, B>(&mut self, builder: B) -> bool
pub fn insert<T, B>(&mut self, builder: B) -> bool
Insert a style builder into the collection.
See StyleBuilder::new
for more information.
§Example
Styles::new().insert(|theme: &Theme| ButtonStyle {
color: theme.accent,
..Default::default()
});
Sourcepub fn with<T, B>(self, builder: B) -> Styles
pub fn with<T, B>(self, builder: B) -> Styles
Insert a style builder into the collection.
See StyleBuilder::new
for more information.
§Example
let styles = Styles::new().with(|theme: &Theme| ButtonStyle {
color: theme.accent,
..Default::default()
});
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Styles
impl !RefUnwindSafe for Styles
impl !Send for Styles
impl !Sync for Styles
impl Unpin for Styles
impl !UnwindSafe for Styles
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