pub trait BorderColorUtilities {
// Required methods
fn border_color(self, color: Color) -> Self;
fn border_color_palette_shade(
self,
palette: ColorPalette,
shade: ColorShade,
) -> Self;
}Expand description
Re-export core tailwind-rs functionality Trait for adding border color utilities to a class builder
Required Methods§
fn border_color(self, color: Color) -> Self
fn border_color_palette_shade( self, palette: ColorPalette, shade: ColorShade, ) -> 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.