#[non_exhaustive]pub enum LinkHighlight {
None,
Invert,
Outline,
Push,
}Expand description
/Link highlight mode — controls the visual feedback when the
user activates the link region.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for LinkHighlight
impl Clone for LinkHighlight
Source§fn clone(&self) -> LinkHighlight
fn clone(&self) -> LinkHighlight
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LinkHighlight
Source§impl Debug for LinkHighlight
impl Debug for LinkHighlight
impl Eq for LinkHighlight
Source§impl PartialEq for LinkHighlight
impl PartialEq for LinkHighlight
impl StructuralPartialEq for LinkHighlight
Auto Trait Implementations§
impl Freeze for LinkHighlight
impl RefUnwindSafe for LinkHighlight
impl Send for LinkHighlight
impl Sync for LinkHighlight
impl Unpin for LinkHighlight
impl UnsafeUnpin for LinkHighlight
impl UnwindSafe for LinkHighlight
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