pub trait FilterToWebRender {
    type Type;

    // Required method
    fn to_webrender(&self, current_color: &AbsoluteColor) -> Self::Type;
}

Required Associated Types§

Required Methods§

source

fn to_webrender(&self, current_color: &AbsoluteColor) -> Self::Type

Implementations on Foreign Types§

source§

impl FilterToWebRender for Filter

§

type Type = FilterOp

source§

fn to_webrender(&self, current_color: &AbsoluteColor) -> Self::Type

Implementors§