float_pigment_forest::nodeTrait StyleSetter
Source pub trait StyleSetter {
Show 46 methods
// Required methods
unsafe fn set_display(&self, value: Display);
unsafe fn set_box_sizing(&self, value: BoxSizing);
unsafe fn set_direction(&self, value: Direction);
unsafe fn set_writing_mode(&self, value: WritingMode);
unsafe fn set_position(&self, value: Position);
unsafe fn set_left(&self, value: Length);
unsafe fn set_top(&self, value: Length);
unsafe fn set_right(&self, value: Length);
unsafe fn set_bottom(&self, value: Length);
unsafe fn set_overflow_x(&self, value: Overflow);
unsafe fn set_overflow_y(&self, value: Overflow);
unsafe fn set_width(&self, value: Length);
unsafe fn set_height(&self, value: Length);
unsafe fn set_min_width(&self, value: Length);
unsafe fn set_min_height(&self, value: Length);
unsafe fn set_max_width(&self, value: Length);
unsafe fn set_max_height(&self, value: Length);
unsafe fn set_margin(&self, value: Length);
unsafe fn set_margin_left(&self, value: Length);
unsafe fn set_margin_top(&self, value: Length);
unsafe fn set_margin_right(&self, value: Length);
unsafe fn set_margin_bottom(&self, value: Length);
unsafe fn set_padding(&self, value: Length);
unsafe fn set_padding_left(&self, value: Length);
unsafe fn set_padding_top(&self, value: Length);
unsafe fn set_padding_right(&self, value: Length);
unsafe fn set_padding_bottom(&self, value: Length);
unsafe fn set_border(&self, value: Length);
unsafe fn set_border_left(&self, value: Length);
unsafe fn set_border_top(&self, value: Length);
unsafe fn set_border_right(&self, value: Length);
unsafe fn set_border_bottom(&self, value: Length);
unsafe fn set_flex_grow(&self, value: f32);
unsafe fn set_flex_shrink(&self, value: f32);
unsafe fn set_flex_basis(&self, value: Length);
unsafe fn set_flex_direction(&self, value: FlexDirection);
unsafe fn set_flex_wrap(&self, value: FlexWrap);
unsafe fn set_justify_content(&self, value: JustifyContent);
unsafe fn set_align_content(&self, value: AlignContent);
unsafe fn set_align_items(&self, value: AlignItems);
unsafe fn set_align_self(&self, value: AlignSelf);
unsafe fn set_aspect_ratio(&self, value: Option<f32>);
unsafe fn set_order(&self, value: i32);
unsafe fn set_text_align(&self, value: TextAlign);
unsafe fn set_row_gap(&self, value: Length);
unsafe fn set_column_gap(&self, value: Length);
}