usesuper::*;/// Formatting / debug-printing for [`RawHtml`].
implDisplay forRawHtml{/// Formats the [`RawHtml`] via the supplied formatter.
////// # Arguments
////// - `&mut Formatter<'_>` - The formatter receiving the formatted output.
////// # Returns
////// - `fmt::Result` - Result of the formatting operation.
fnfmt(&self, formatter:&mutFormatter<'_>)->fmt::Result{write!(formatter,"{}",self.get_content())}}