pub enum InlineKind {
Text,
Emphasis,
Strong,
BoldItalic,
Code,
Reference,
}Variants§
Text
Emphasis
Strong
BoldItalic
Code
Reference
@label — a cross-reference to a labelled block. The
Inline::text payload is the bare label name (no leading
@); the resolver rewrites it to the target’s resolved text.
Trait Implementations§
Source§impl Clone for InlineKind
impl Clone for InlineKind
Source§fn clone(&self) -> InlineKind
fn clone(&self) -> InlineKind
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 InlineKind
impl Debug for InlineKind
Source§impl PartialEq for InlineKind
impl PartialEq for InlineKind
Source§fn eq(&self, other: &InlineKind) -> bool
fn eq(&self, other: &InlineKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for InlineKind
impl Eq for InlineKind
impl StructuralPartialEq for InlineKind
Auto Trait Implementations§
impl Freeze for InlineKind
impl RefUnwindSafe for InlineKind
impl Send for InlineKind
impl Sync for InlineKind
impl Unpin for InlineKind
impl UnsafeUnpin for InlineKind
impl UnwindSafe for InlineKind
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