pub enum ImageLink<'a> {
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 image link being serialized.
Variants§
Reference
A reference image with an explicit label (e.g., ![alt][label])
Fields
Collapsed
A collapsed reference image (e.g., ![alt][])
Shortcut
A shortcut reference image (e.g., ![alt])
Other
An inline image or other image type
Trait Implementations§
Source§impl<'a> Ord for ImageLink<'a>
impl<'a> Ord for ImageLink<'a>
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> PartialOrd for ImageLink<'a>
impl<'a> PartialOrd for ImageLink<'a>
impl<'a> Eq for ImageLink<'a>
impl<'a> StructuralPartialEq for ImageLink<'a>
Auto Trait Implementations§
impl<'a> Freeze for ImageLink<'a>
impl<'a> RefUnwindSafe for ImageLink<'a>
impl<'a> Send for ImageLink<'a>
impl<'a> Sync for ImageLink<'a>
impl<'a> Unpin for ImageLink<'a>
impl<'a> UnwindSafe for ImageLink<'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