pub enum StrongKind {
Asterisks,
Underscores,
}Expand description
The character to use for strong emphasis/bold.
Variants§
Asterisks
Uses asterisks (**) for strong emphasis (default).
Underscores
Uses underscores (__) for strong emphasis.
Trait Implementations§
source§impl Clone for StrongKind
impl Clone for StrongKind
source§fn clone(&self) -> StrongKind
fn clone(&self) -> StrongKind
Returns a copy 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<'de> Deserialize<'de> for StrongKind
impl<'de> Deserialize<'de> for StrongKind
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for StrongKind
impl Display for StrongKind
source§impl FromStr for StrongKind
impl FromStr for StrongKind
source§impl PartialEq for StrongKind
impl PartialEq for StrongKind
source§fn eq(&self, other: &StrongKind) -> bool
fn eq(&self, other: &StrongKind) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for StrongKind
impl Serialize for StrongKind
impl Copy for StrongKind
impl StructuralPartialEq for StrongKind
Auto Trait Implementations§
impl Freeze for StrongKind
impl RefUnwindSafe for StrongKind
impl Send for StrongKind
impl Sync for StrongKind
impl Unpin for StrongKind
impl UnwindSafe for StrongKind
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