pub enum WikiLinkOrder {
TitleAfterPipe,
TitleBeforePipe,
}Expand description
Where a wikilink’s display title sits relative to the | separator. The two
orders are mutually exclusive (SyntaxConfigError::WikilinkTitleOrderConflict).
Variants§
TitleAfterPipe
[[target|title]] — the Obsidian convention, and the maximal default.
TitleBeforePipe
[[title|target]].
Trait Implementations§
Source§impl Clone for WikiLinkOrder
impl Clone for WikiLinkOrder
Source§fn clone(&self) -> WikiLinkOrder
fn clone(&self) -> WikiLinkOrder
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 moreimpl Copy for WikiLinkOrder
Source§impl Debug for WikiLinkOrder
impl Debug for WikiLinkOrder
impl Eq for WikiLinkOrder
Source§impl PartialEq for WikiLinkOrder
impl PartialEq for WikiLinkOrder
Source§fn eq(&self, other: &WikiLinkOrder) -> bool
fn eq(&self, other: &WikiLinkOrder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WikiLinkOrder
Auto Trait Implementations§
impl Freeze for WikiLinkOrder
impl RefUnwindSafe for WikiLinkOrder
impl Send for WikiLinkOrder
impl Sync for WikiLinkOrder
impl Unpin for WikiLinkOrder
impl UnsafeUnpin for WikiLinkOrder
impl UnwindSafe for WikiLinkOrder
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