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>,
},
}Expand description
The category of link being serialized.
Variants§
AngleBracketed
An autolink (e.g., <http://example.com>)
Reference
A reference link with an explicit label (e.g., [text][label])
Fields
Collapsed
A collapsed reference link (e.g., [text][])
Shortcut
A shortcut reference link (e.g., [text])
Other
An inline link or other link type
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 duplicate 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