pub enum HtmlLinkAction {
Clicked {
url: String,
key_modifiers: KeyModifiers,
},
SecondaryClicked {
url: String,
key_modifiers: KeyModifiers,
},
None,
}
Variants§
Trait Implementations§
Source§impl ActionDefaultRef for HtmlLinkAction
impl ActionDefaultRef for HtmlLinkAction
fn default_ref() -> &'static Self
Source§impl Clone for HtmlLinkAction
impl Clone for HtmlLinkAction
Source§fn clone(&self) -> HtmlLinkAction
fn clone(&self) -> HtmlLinkAction
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 moreSource§impl Debug for HtmlLinkAction
impl Debug for HtmlLinkAction
Auto Trait Implementations§
impl Freeze for HtmlLinkAction
impl RefUnwindSafe for HtmlLinkAction
impl Send for HtmlLinkAction
impl Sync for HtmlLinkAction
impl Unpin for HtmlLinkAction
impl UnwindSafe for HtmlLinkAction
Blanket Implementations§
Source§impl<T> ActionTrait for T
impl<T> ActionTrait for T
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