[][src]Struct winapi::um::d2d1_1::ID2D1Effect

#[repr(C)]
pub struct ID2D1Effect {
    pub lpVtbl: *const ID2D1EffectVtbl,
}

Fields

lpVtbl: *const ID2D1EffectVtbl

Methods

impl ID2D1Effect[src]

pub unsafe fn SetInput(
    &self,
    index: UINT32,
    input: *const ID2D1Image,
    invalidate: BOOL
)
[src]

pub unsafe fn SetInputCount(&self, inputCount: UINT32) -> HRESULT[src]

pub unsafe fn GetInput(&self, index: UINT32, input: *mut *mut ID2D1Image)[src]

pub unsafe fn GetInputCount(&self) -> UINT32[src]

pub unsafe fn GetOutput(&self, outputImage: *mut *mut ID2D1Image)[src]

Methods from Deref<Target = ID2D1Properties>

pub unsafe fn GetPropertyCount(&self) -> UINT32[src]

pub unsafe fn GetPropertyName(
    &self,
    index: UINT32,
    name: PWSTR,
    nameCount: UINT32
) -> HRESULT
[src]

pub unsafe fn GetPropertyNameLength(&self, index: UINT32) -> UINT32[src]

pub unsafe fn GetType(&self, index: UINT32) -> D2D1_PROPERTY_TYPE[src]

pub unsafe fn GetPropertyIndex(&self, name: PCWSTR) -> UINT32[src]

pub unsafe fn SetValueByName(
    &self,
    name: PCWSTR,
    prop_type: D2D1_PROPERTY_TYPE,
    data: *const BYTE,
    dataSize: UINT32
) -> HRESULT
[src]

pub unsafe fn SetValue(
    &self,
    index: UINT32,
    prop_type: D2D1_PROPERTY_TYPE,
    data: *const BYTE,
    dataSize: UINT32
) -> HRESULT
[src]

pub unsafe fn GetValueByName(
    &self,
    name: PCWSTR,
    prop_type: D2D1_PROPERTY_TYPE,
    data: *mut BYTE,
    dataSize: UINT32
) -> HRESULT
[src]

pub unsafe fn GetValue(
    &self,
    index: UINT32,
    prop_type: D2D1_PROPERTY_TYPE,
    data: *mut BYTE,
    dataSize: UINT32
) -> HRESULT
[src]

pub unsafe fn GetValueSize(&self, index: UINT32) -> UINT32[src]

pub unsafe fn GetSubProperties(
    &self,
    index: UINT32,
    subProperties: *mut *mut ID2D1Properties
) -> HRESULT
[src]

Trait Implementations

impl Interface for ID2D1Effect[src]

impl Deref for ID2D1Effect[src]

type Target = ID2D1Properties

The resulting type after dereferencing.

Auto Trait Implementations

impl Unpin for ID2D1Effect

impl !Send for ID2D1Effect

impl !Sync for ID2D1Effect

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]