Struct freya::hooks::DropdownTheme
pub struct DropdownTheme {
pub font_theme: FontTheme,
pub dropdown_background: Cow<'static, str>,
pub background_button: Cow<'static, str>,
pub hover_background: Cow<'static, str>,
pub border_fill: Cow<'static, str>,
pub arrow_fill: Cow<'static, str>,
}Expand description
Theming properties for the Dropdown component.
Fields§
§font_theme: FontTheme§dropdown_background: Cow<'static, str>§hover_background: Cow<'static, str>§border_fill: Cow<'static, str>§arrow_fill: Cow<'static, str>Implementations§
§impl DropdownTheme
impl DropdownTheme
pub fn apply_optional(&mut self, optional: &DropdownThemeWith)
pub fn apply_optional(&mut self, optional: &DropdownThemeWith)
Checks each field in optional and if it’s Some, it overwrites the corresponding self field.
Trait Implementations§
§impl Clone for DropdownTheme
impl Clone for DropdownTheme
§fn clone(&self) -> DropdownTheme
fn clone(&self) -> DropdownTheme
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 DropdownTheme
impl Debug for DropdownTheme
§impl PartialEq<DropdownTheme> for DropdownTheme
impl PartialEq<DropdownTheme> for DropdownTheme
§fn eq(&self, other: &DropdownTheme) -> bool
fn eq(&self, other: &DropdownTheme) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for DropdownTheme
impl StructuralEq for DropdownTheme
impl StructuralPartialEq for DropdownTheme
Auto Trait Implementations§
impl RefUnwindSafe for DropdownTheme
impl Send for DropdownTheme
impl Sync for DropdownTheme
impl Unpin for DropdownTheme
impl UnwindSafe for DropdownTheme
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.