pub enum LinkKey {
Url(String),
Clickable(String),
}Expand description
Link identity without the link behavior: what rendering may know about a
LinkAnnotation. URL links keep their URL, clickable links keep their
tag — the handler stays UI-side.
Variants§
Url(String)
Identity of a LinkAnnotation::Url.
Clickable(String)
Identity of a LinkAnnotation::Clickable — its tag.
Trait Implementations§
impl StructuralPartialEq for LinkKey
Auto Trait Implementations§
impl Freeze for LinkKey
impl RefUnwindSafe for LinkKey
impl Send for LinkKey
impl Sync for LinkKey
impl Unpin for LinkKey
impl UnsafeUnpin for LinkKey
impl UnwindSafe for LinkKey
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