Type Alias lay_rs::prelude::taffy::GridPlacement

pub type GridPlacement = GenericGridPlacement<GridLine>;
Expand description

A grid line placement specification. Used for grid-[row/column]-[start/end]. Named tracks are not implemented.

Defaults to GridPlacement::Auto

Specification

Aliased Type§

enum GridPlacement {
    Auto,
    Line(GridLine),
    Span(u16),
}

Variants§

§

Auto

§

Line(GridLine)

§

Span(u16)