pub trait DropShadowUtilities {
Show 23 methods
// Required methods
fn drop_shadow(self, shadow: DropShadow) -> Self;
fn drop_shadow_red(self) -> Self;
fn drop_shadow_blue(self) -> Self;
fn drop_shadow_green(self) -> Self;
fn drop_shadow_yellow(self) -> Self;
fn drop_shadow_purple(self) -> Self;
fn drop_shadow_pink(self) -> Self;
fn drop_shadow_orange(self) -> Self;
fn drop_shadow_indigo(self) -> Self;
fn drop_shadow_cyan(self) -> Self;
fn drop_shadow_teal(self) -> Self;
fn drop_shadow_lime(self) -> Self;
fn drop_shadow_emerald(self) -> Self;
fn drop_shadow_rose(self) -> Self;
fn drop_shadow_violet(self) -> Self;
fn drop_shadow_fuchsia(self) -> Self;
fn drop_shadow_sky(self) -> Self;
fn drop_shadow_amber(self) -> Self;
fn drop_shadow_stone(self) -> Self;
fn drop_shadow_neutral(self) -> Self;
fn drop_shadow_zinc(self) -> Self;
fn drop_shadow_gray(self) -> Self;
fn drop_shadow_slate(self) -> Self;
}
Expand description
Trait for adding drop shadow utilities to a class builder
Required Methods§
fn drop_shadow(self, shadow: DropShadow) -> Self
fn drop_shadow_red(self) -> Self
fn drop_shadow_blue(self) -> Self
fn drop_shadow_green(self) -> Self
fn drop_shadow_yellow(self) -> Self
fn drop_shadow_purple(self) -> Self
fn drop_shadow_pink(self) -> Self
fn drop_shadow_orange(self) -> Self
fn drop_shadow_indigo(self) -> Self
fn drop_shadow_cyan(self) -> Self
fn drop_shadow_teal(self) -> Self
fn drop_shadow_lime(self) -> Self
fn drop_shadow_emerald(self) -> Self
fn drop_shadow_rose(self) -> Self
fn drop_shadow_violet(self) -> Self
fn drop_shadow_fuchsia(self) -> Self
fn drop_shadow_sky(self) -> Self
fn drop_shadow_amber(self) -> Self
fn drop_shadow_stone(self) -> Self
fn drop_shadow_neutral(self) -> Self
fn drop_shadow_zinc(self) -> Self
fn drop_shadow_gray(self) -> Self
fn drop_shadow_slate(self) -> 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.