pub trait BorderedExt: BorderedMut + Sized {
// Provided methods
fn border_color(self, color: impl Into<String>, width: f32) -> Self { ... }
fn border_none(self) -> Self { ... }
}Expand description
Builder API for border.
Provided Methods§
fn border_color(self, color: impl Into<String>, width: f32) -> Self
fn border_none(self) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".