skia_safe/modules/svg/fe/
flood.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use super::{DebugAttributes, NodeSubtype};
use crate::{impl_default_make, prelude::*};
use skia_bindings as sb;

pub type Flood = RCHandle<sb::SkSVGFeFlood>;

impl NodeSubtype for sb::SkSVGFeFlood {
    type Base = sb::SkSVGFe;
}

impl_default_make!(Flood, sb::C_SkSVGFeFlood_Make);

impl DebugAttributes for Flood {
    const NAME: &'static str = "FeFlood";

    fn _dbg(&self, builder: &mut std::fmt::DebugStruct) {
        self.as_base()._dbg(builder);
    }
}