Struct windows::Win32::Graphics::Direct2D::ID2D1Effect
pub struct ID2D1Effect(/* private fields */);
Implementations§
§impl ID2D1Effect
impl ID2D1Effect
pub unsafe fn SetInput<P0, P1>(&self, index: u32, input: P0, invalidate: P1)where
P0: Param<ID2D1Image>,
P1: Param<BOOL>,
pub unsafe fn SetInputCount(&self, inputcount: u32) -> Result<()>
pub unsafe fn GetInput(&self, index: u32) -> Result<ID2D1Image>
pub unsafe fn GetInputCount(&self) -> u32
pub unsafe fn GetOutput(&self) -> Result<ID2D1Image>
Methods from Deref<Target = ID2D1Properties>§
pub unsafe fn GetPropertyCount(&self) -> u32
pub unsafe fn GetPropertyName(&self, index: u32, name: &mut [u16]) -> Result<()>
pub unsafe fn GetPropertyNameLength(&self, index: u32) -> u32
pub unsafe fn GetType(&self, index: u32) -> D2D1_PROPERTY_TYPE
pub unsafe fn GetPropertyIndex<P0>(&self, name: P0) -> u32where
P0: Param<PCWSTR>,
pub unsafe fn SetValueByName<P0>(
&self,
name: P0,
type: D2D1_PROPERTY_TYPE,
data: &[u8],
) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn SetValue( &self, index: u32, type: D2D1_PROPERTY_TYPE, data: &[u8], ) -> Result<()>
pub unsafe fn GetValueByName<P0>(
&self,
name: P0,
type: D2D1_PROPERTY_TYPE,
data: &mut [u8],
) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn GetValue( &self, index: u32, type: D2D1_PROPERTY_TYPE, data: &mut [u8], ) -> Result<()>
pub unsafe fn GetValueSize(&self, index: u32) -> u32
pub unsafe fn GetSubProperties(&self, index: u32) -> Result<ID2D1Properties>
Trait Implementations§
§impl CanInto<ID2D1Properties> for ID2D1Effect
impl CanInto<ID2D1Properties> for ID2D1Effect
§impl CanInto<IUnknown> for ID2D1Effect
impl CanInto<IUnknown> for ID2D1Effect
§impl Clone for ID2D1Effect
impl Clone for ID2D1Effect
§fn clone(&self) -> ID2D1Effect
fn clone(&self) -> ID2D1Effect
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for ID2D1Effect
impl Debug for ID2D1Effect
§impl Deref for ID2D1Effect
impl Deref for ID2D1Effect
§impl From<&ID2D1Effect> for &ID2D1Properties
impl From<&ID2D1Effect> for &ID2D1Properties
§fn from(value: &ID2D1Effect) -> Self
fn from(value: &ID2D1Effect) -> Self
Converts to this type from the input type.
§impl From<&ID2D1Effect> for &IUnknown
impl From<&ID2D1Effect> for &IUnknown
§fn from(value: &ID2D1Effect) -> Self
fn from(value: &ID2D1Effect) -> Self
Converts to this type from the input type.
§impl From<ID2D1Effect> for ID2D1Properties
impl From<ID2D1Effect> for ID2D1Properties
§fn from(value: ID2D1Effect) -> Self
fn from(value: ID2D1Effect) -> Self
Converts to this type from the input type.
§impl From<ID2D1Effect> for IUnknown
impl From<ID2D1Effect> for IUnknown
§fn from(value: ID2D1Effect) -> Self
fn from(value: ID2D1Effect) -> Self
Converts to this type from the input type.
§impl Interface for ID2D1Effect
impl Interface for ID2D1Effect
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for ID2D1Effect
impl PartialEq for ID2D1Effect
§fn eq(&self, other: &ID2D1Effect) -> bool
fn eq(&self, other: &ID2D1Effect) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ID2D1Effect
impl Send for ID2D1Effect
impl StructuralPartialEq for ID2D1Effect
impl Sync for ID2D1Effect
Auto Trait Implementations§
impl Freeze for ID2D1Effect
impl RefUnwindSafe for ID2D1Effect
impl Unpin for ID2D1Effect
impl UnwindSafe for ID2D1Effect
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)