pub trait TeX {
// Required methods
fn tex_math_symbol() -> String;
fn tex_string(&self) -> String;
}Expand description
Types that can be rendered as LaTeX math.
Required Methods§
fn tex_math_symbol() -> String
fn tex_string(&self) -> String
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".