pub struct LinkTheme {
pub color: Option<Rgba>,
pub visited: Option<Rgba>,
pub background: Option<Rgba>,
pub hover_bg: Option<Rgba>,
pub underline: Option<bool>,
}Expand description
Hyperlink colors and underline setting.
Fields§
§color: Option<Rgba>§visited: Option<Rgba>§background: Option<Rgba>§hover_bg: Option<Rgba>§underline: Option<bool>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LinkTheme
impl<'de> Deserialize<'de> for LinkTheme
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
impl StructuralPartialEq for LinkTheme
Auto Trait Implementations§
impl Freeze for LinkTheme
impl RefUnwindSafe for LinkTheme
impl Send for LinkTheme
impl Sync for LinkTheme
impl Unpin for LinkTheme
impl UnsafeUnpin for LinkTheme
impl UnwindSafe for LinkTheme
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