pub enum LinkDefStyle {
Bare,
Angle,
Preserve,
}Expand description
Destination style for link reference definitions and inline links.
Bare emits [label]: url; Angle emits [label]: <url>;
Preserve (the default) emits whichever form the source used for
each destination.
Variants§
Trait Implementations§
Source§impl Clone for LinkDefStyle
impl Clone for LinkDefStyle
Source§fn clone(&self) -> LinkDefStyle
fn clone(&self) -> LinkDefStyle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LinkDefStyle
impl Debug for LinkDefStyle
Source§impl PartialEq for LinkDefStyle
impl PartialEq for LinkDefStyle
Source§fn eq(&self, other: &LinkDefStyle) -> bool
fn eq(&self, other: &LinkDefStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LinkDefStyle
impl Eq for LinkDefStyle
impl StructuralPartialEq for LinkDefStyle
Auto Trait Implementations§
impl Freeze for LinkDefStyle
impl RefUnwindSafe for LinkDefStyle
impl Send for LinkDefStyle
impl Sync for LinkDefStyle
impl Unpin for LinkDefStyle
impl UnsafeUnpin for LinkDefStyle
impl UnwindSafe for LinkDefStyle
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