Trait windows::Win32::Storage::Xps::IXpsOMSolidColorBrush_Impl

pub trait IXpsOMSolidColorBrush_Impl: Sized + IXpsOMBrush_Impl {
    // Required methods
    fn GetColor(
        &self,
        color: *mut XPS_COLOR,
    ) -> Result<IXpsOMColorProfileResource>;
    fn SetColor(
        &self,
        color: *const XPS_COLOR,
        colorprofile: Option<&IXpsOMColorProfileResource>,
    ) -> Result<()>;
    fn Clone(&self) -> Result<IXpsOMSolidColorBrush>;
}

Required Methods§

fn GetColor(&self, color: *mut XPS_COLOR) -> Result<IXpsOMColorProfileResource>

fn SetColor( &self, color: *const XPS_COLOR, colorprofile: Option<&IXpsOMColorProfileResource>, ) -> Result<()>

fn Clone(&self) -> Result<IXpsOMSolidColorBrush>

Object Safety§

This trait is not object safe.

Implementors§