pub trait Italic { // Required method fn to_italic(&self) -> String; }
An extension trait for italic transformations.
Transforms the given text into its italic variant.