pub enum LinkCategory<'a> {
AngleBracketed,
Reference {
uri: Cow<'a, str>,
title: Cow<'a, str>,
id: Cow<'a, str>,
},
Collapsed {
uri: Cow<'a, str>,
title: Cow<'a, str>,
},
Shortcut {
uri: Cow<'a, str>,
title: Cow<'a, str>,
},
Other {
uri: Cow<'a, str>,
title: Cow<'a, str>,
},
}
Variants§
Trait Implementations§
source§impl<'a> Clone for LinkCategory<'a>
impl<'a> Clone for LinkCategory<'a>
source§fn clone(&self) -> LinkCategory<'a>
fn clone(&self) -> LinkCategory<'a>
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<'a> Debug for LinkCategory<'a>
impl<'a> Debug for LinkCategory<'a>
source§impl<'a> Hash for LinkCategory<'a>
impl<'a> Hash for LinkCategory<'a>
source§impl<'a> Ord for LinkCategory<'a>
impl<'a> Ord for LinkCategory<'a>
source§fn cmp(&self, other: &LinkCategory<'a>) -> Ordering
fn cmp(&self, other: &LinkCategory<'a>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<'a> PartialEq for LinkCategory<'a>
impl<'a> PartialEq for LinkCategory<'a>
source§impl<'a> PartialOrd for LinkCategory<'a>
impl<'a> PartialOrd for LinkCategory<'a>
impl<'a> Eq for LinkCategory<'a>
impl<'a> StructuralPartialEq for LinkCategory<'a>
Auto Trait Implementations§
impl<'a> Freeze for LinkCategory<'a>
impl<'a> RefUnwindSafe for LinkCategory<'a>
impl<'a> Send for LinkCategory<'a>
impl<'a> Sync for LinkCategory<'a>
impl<'a> Unpin for LinkCategory<'a>
impl<'a> UnwindSafe for LinkCategory<'a>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)