pub trait FlexLayoutStyle {
Show 38 methods
// Required methods
fn width(&self) -> Dimension;
fn height(&self) -> Dimension;
fn margin_top(&self) -> Dimension;
fn margin_right(&self) -> Dimension;
fn margin_bottom(&self) -> Dimension;
fn margin_left(&self) -> Dimension;
fn padding_top(&self) -> Dimension;
fn padding_right(&self) -> Dimension;
fn padding_bottom(&self) -> Dimension;
fn padding_left(&self) -> Dimension;
fn position_top(&self) -> Dimension;
fn position_right(&self) -> Dimension;
fn position_bottom(&self) -> Dimension;
fn position_left(&self) -> Dimension;
fn border_top(&self) -> Dimension;
fn border_right(&self) -> Dimension;
fn border_bottom(&self) -> Dimension;
fn border_left(&self) -> Dimension;
fn display(&self) -> Display;
fn position_type(&self) -> PositionType;
fn direction(&self) -> Direction;
fn flex_direction(&self) -> FlexDirection;
fn flex_wrap(&self) -> FlexWrap;
fn justify_content(&self) -> JustifyContent;
fn align_items(&self) -> AlignItems;
fn align_content(&self) -> AlignContent;
fn order(&self) -> isize;
fn flex_basis(&self) -> Dimension;
fn flex_grow(&self) -> f32;
fn flex_shrink(&self) -> f32;
fn align_self(&self) -> AlignSelf;
fn overflow(&self) -> Overflow;
fn min_width(&self) -> Dimension;
fn min_height(&self) -> Dimension;
fn max_width(&self) -> Dimension;
fn max_height(&self) -> Dimension;
fn aspect_ratio(&self) -> Number;
fn overflow_wrap(&self) -> OverflowWrap;
}