pub trait Bordered {
    fn border_thickness(&self) -> Thickness;
fn set_border_thickness(&mut self, thickness: Thickness);
fn border_brush(&self) -> &Brush;
fn set_border_brush(&mut self, brush: Brush);
fn border_radius(&self) -> f64;
fn set_border_radius(&mut self, radius: f64);
fn border(&self) -> &Border;
fn set_border(&mut self, border: Border); }
Expand description

Contains a set of getters and setters to read and write to a border.

Required methods

Gets the thickness.

Sets the border thickness.

Gets the border brush.

Sets the border brush.

Gets the border radius.

Sets the border radius.

Gets the complete border.

Sets the complete border.

Implementors