pub trait InlineUnit<T: LayoutTreeNode> {
type Env;
// Required method
fn new(
env: &mut Self::Env,
node: &T,
result: MeasureResult<T::Length>,
) -> Self;
}
Expand description
A helper type as the inline form of a tree node.
Required Associated Types§
Required Methods§
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.