GridPlacementUtilities

Trait GridPlacementUtilities 

Source
pub trait GridPlacementUtilities {
    // Required methods
    fn grid_column_start(self, start: GridColumnStart) -> Self;
    fn grid_column_end(self, end: GridColumnEnd) -> Self;
    fn grid_row_start(self, start: GridRowStart) -> Self;
    fn grid_row_end(self, end: GridRowEnd) -> Self;
}
Expand description

Trait for adding grid placement utilities to a class builder

Required Methods§

Source

fn grid_column_start(self, start: GridColumnStart) -> Self

Source

fn grid_column_end(self, end: GridColumnEnd) -> Self

Source

fn grid_row_start(self, start: GridRowStart) -> Self

Source

fn grid_row_end(self, end: GridRowEnd) -> Self

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§