pub trait ID2D1ImageSourceFromWic_Impl: Sized + ID2D1ImageSource_Impl {
    // Required methods
    fn EnsureCached(&self, rectangletofill: *const D2D_RECT_U) -> Result<()>;
    fn TrimCache(&self, rectangletopreserve: *const D2D_RECT_U) -> Result<()>;
    fn GetSource(&self, wicbitmapsource: *mut Option<IWICBitmapSource>);
}

Required Methods§

fn EnsureCached(&self, rectangletofill: *const D2D_RECT_U) -> Result<()>

fn TrimCache(&self, rectangletopreserve: *const D2D_RECT_U) -> Result<()>

fn GetSource(&self, wicbitmapsource: *mut Option<IWICBitmapSource>)

Object Safety§

This trait is not object safe.

Implementors§