Struct freya::prelude::LoaderTheme
pub struct LoaderTheme {
pub primary_color: Cow<'static, str>,
pub secondary_color: Cow<'static, str>,
}Expand description
Theming properties for the Loader component.
Fields§
§primary_color: Cow<'static, str>§secondary_color: Cow<'static, str>Implementations§
§impl LoaderTheme
impl LoaderTheme
pub fn apply_optional(&mut self, optional: &LoaderThemeWith)
pub fn apply_optional(&mut self, optional: &LoaderThemeWith)
Checks each field in optional and if it’s Some, it overwrites the corresponding self field.
Trait Implementations§
§impl Clone for LoaderTheme
impl Clone for LoaderTheme
§fn clone(&self) -> LoaderTheme
fn clone(&self) -> LoaderTheme
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for LoaderTheme
impl Debug for LoaderTheme
§impl PartialEq<LoaderTheme> for LoaderTheme
impl PartialEq<LoaderTheme> for LoaderTheme
§fn eq(&self, other: &LoaderTheme) -> bool
fn eq(&self, other: &LoaderTheme) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for LoaderTheme
impl StructuralEq for LoaderTheme
impl StructuralPartialEq for LoaderTheme
Auto Trait Implementations§
impl RefUnwindSafe for LoaderTheme
impl Send for LoaderTheme
impl Sync for LoaderTheme
impl Unpin for LoaderTheme
impl UnwindSafe for LoaderTheme
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.