skia-safe 0.97.0

Safe Skia Bindings for Rust
use super::{DebugAttributes, NodeSubtype};
use crate::{impl_default_make, prelude::*};
use skia_bindings as sb;

pub type G = RCHandle<sb::SkSVGG>;

impl NodeSubtype for sb::SkSVGG {
    type Base = sb::SkSVGContainer;
}

impl_default_make!(G, sb::C_SkSVGG_Make);

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

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