Trait InlineUnit

Source
pub trait InlineUnit<T: LayoutTreeNode> {
    type Env;

    // Required method
    fn inline_block(
        env: &mut Self::Env,
        node: &T,
        size: Size<T::Length>,
        baseline_ascent: T::Length,
    ) -> Self;
}
Expand description

A helper type as the inline form of a tree node.

Required Associated Types§

Source

type Env

Some custom environment data.

Required Methods§

Source

fn inline_block( env: &mut Self::Env, node: &T, size: Size<T::Length>, baseline_ascent: T::Length, ) -> Self

Construct from a tree node with specified size and baseline information.

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§