Trait FromUnrolled

Source
pub trait FromUnrolled<T: Displayed> {
    // Required method
    fn load(expr: &Unrolled<T>, math: &mut Expand) -> Self;
}
Expand description

Helper trait for converting unrolled expressions into math expressions.

Required Methods§

Source

fn load(expr: &Unrolled<T>, math: &mut Expand) -> Self

Load the unroll expression

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§