pub enum NormalizedFont {
Emphasis,
Literal,
Symbolic,
}Expand description
Normalized font selected by an mdoc Bf block.
Variants§
Emphasis
Typographic emphasis.
Literal
Literal or fixed-width text.
Symbolic
Symbolic text, conventionally rendered in bold.
Trait Implementations§
Source§impl Clone for NormalizedFont
impl Clone for NormalizedFont
Source§fn clone(&self) -> NormalizedFont
fn clone(&self) -> NormalizedFont
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 NormalizedFont
Source§impl Debug for NormalizedFont
impl Debug for NormalizedFont
Source§impl<'de> Deserialize<'de> for NormalizedFont
impl<'de> Deserialize<'de> for NormalizedFont
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
impl Eq for NormalizedFont
Source§impl PartialEq for NormalizedFont
impl PartialEq for NormalizedFont
Source§impl Serialize for NormalizedFont
impl Serialize for NormalizedFont
impl StructuralPartialEq for NormalizedFont
Auto Trait Implementations§
impl Freeze for NormalizedFont
impl RefUnwindSafe for NormalizedFont
impl Send for NormalizedFont
impl Sync for NormalizedFont
impl Unpin for NormalizedFont
impl UnsafeUnpin for NormalizedFont
impl UnwindSafe for NormalizedFont
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