pub trait CreateShadow {
    // Required method
    fn create_shadow(
        &self,
        shadow: &Shadow,
        blur_is_noop: bool,
        current_raster_space: RasterSpace
    ) -> Self;
}

Required Methods§

source

fn create_shadow( &self, shadow: &Shadow, blur_is_noop: bool, current_raster_space: RasterSpace ) -> Self

Implementations on Foreign Types§

source§

impl CreateShadow for PrimitiveKeyKind

Implementors§