pub trait ID2D1CommandSink2_Impl: Sized + ID2D1CommandSink1_Impl {
    // Required methods
    fn DrawInk(
        &self,
        ink: Option<&ID2D1Ink>,
        brush: Option<&ID2D1Brush>,
        inkstyle: Option<&ID2D1InkStyle>,
    ) -> Result<()>;
    fn DrawGradientMesh(
        &self,
        gradientmesh: Option<&ID2D1GradientMesh>,
    ) -> Result<()>;
    fn DrawGdiMetafile(
        &self,
        gdimetafile: Option<&ID2D1GdiMetafile>,
        destinationrectangle: *const D2D_RECT_F,
        sourcerectangle: *const D2D_RECT_F,
    ) -> Result<()>;
}

Required Methods§

fn DrawInk( &self, ink: Option<&ID2D1Ink>, brush: Option<&ID2D1Brush>, inkstyle: Option<&ID2D1InkStyle>, ) -> Result<()>

fn DrawGradientMesh( &self, gradientmesh: Option<&ID2D1GradientMesh>, ) -> Result<()>

fn DrawGdiMetafile( &self, gdimetafile: Option<&ID2D1GdiMetafile>, destinationrectangle: *const D2D_RECT_F, sourcerectangle: *const D2D_RECT_F, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§