pub struct InputOptionColors {
pub active_background: Option<String>,
pub active_border: Option<String>,
pub active_foreground: Option<String>,
pub hover_background: Option<String>,
}Fields§
§active_background: Option<String>Background color of activated options in input fields.
active_border: Option<String>Border color of activated options in input fields.
active_foreground: Option<String>Foreground color of activated options in input fields.
hover_background: Option<String>Background color of activated options in input fields.
Trait Implementations§
Source§impl Clone for InputOptionColors
impl Clone for InputOptionColors
Source§fn clone(&self) -> InputOptionColors
fn clone(&self) -> InputOptionColors
Returns a duplicate 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 moreSource§impl Debug for InputOptionColors
impl Debug for InputOptionColors
Source§impl<'de> Deserialize<'de> for InputOptionColors
impl<'de> Deserialize<'de> for InputOptionColors
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InputOptionColors
impl RefUnwindSafe for InputOptionColors
impl Send for InputOptionColors
impl Sync for InputOptionColors
impl Unpin for InputOptionColors
impl UnwindSafe for InputOptionColors
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