Struct IDCompositionVisualVtbl

Source
#[repr(C)]
pub struct IDCompositionVisualVtbl {
Show 18 fields pub parent: IUnknownVtbl, pub SetOffsetX_2: unsafe extern "system" fn(This: *mut IDCompositionVisual, animation: *const IDCompositionAnimation) -> HRESULT, pub SetOffsetX_1: unsafe extern "system" fn(This: *mut IDCompositionVisual, offsetX: c_float) -> HRESULT, pub SetOffsetY_2: unsafe extern "system" fn(This: *mut IDCompositionVisual, animation: *const IDCompositionAnimation) -> HRESULT, pub SetOffsetY_1: unsafe extern "system" fn(This: *mut IDCompositionVisual, offsetY: c_float) -> HRESULT, pub SetTransform_2: unsafe extern "system" fn(This: *mut IDCompositionVisual, transform: *const IDCompositionTransform) -> HRESULT, pub SetTransform_1: unsafe extern "system" fn(This: *mut IDCompositionVisual, matrix: *const D2D_MATRIX_3X2_F) -> HRESULT, pub SetTransformParent: unsafe extern "system" fn(This: *mut IDCompositionVisual, visual: *const IDCompositionVisual) -> HRESULT, pub SetEffect: unsafe extern "system" fn(This: *mut IDCompositionVisual, effect: *const IDCompositionEffect) -> HRESULT, pub SetBitmapInterpolationMode: unsafe extern "system" fn(This: *mut IDCompositionVisual, interpolationMode: DCOMPOSITION_BITMAP_INTERPOLATION_MODE) -> HRESULT, pub SetBorderMode: unsafe extern "system" fn(This: *mut IDCompositionVisual, borderMode: DCOMPOSITION_BORDER_MODE) -> HRESULT, pub SetClip_2: unsafe extern "system" fn(This: *mut IDCompositionVisual, clip: *const IDCompositionClip) -> HRESULT, pub SetClip_1: unsafe extern "system" fn(This: *mut IDCompositionVisual, rect: *const D2D_RECT_F) -> HRESULT, pub SetContent: unsafe extern "system" fn(This: *mut IDCompositionVisual, content: *const IUnknown) -> HRESULT, pub AddVisual: unsafe extern "system" fn(This: *mut IDCompositionVisual, visual: *const IDCompositionVisual, insertAbove: BOOL, referenceVisual: *const IDCompositionVisual) -> HRESULT, pub RemoveVisual: unsafe extern "system" fn(This: *mut IDCompositionVisual, visual: *const IDCompositionVisual) -> HRESULT, pub RemoveAllVisuals: unsafe extern "system" fn(This: *mut IDCompositionVisual) -> HRESULT, pub SetCompositeMode: unsafe extern "system" fn(This: *mut IDCompositionVisual, compositeMode: DCOMPOSITION_COMPOSITE_MODE) -> HRESULT,
}

Fields§

§parent: IUnknownVtbl§SetOffsetX_2: unsafe extern "system" fn(This: *mut IDCompositionVisual, animation: *const IDCompositionAnimation) -> HRESULT§SetOffsetX_1: unsafe extern "system" fn(This: *mut IDCompositionVisual, offsetX: c_float) -> HRESULT§SetOffsetY_2: unsafe extern "system" fn(This: *mut IDCompositionVisual, animation: *const IDCompositionAnimation) -> HRESULT§SetOffsetY_1: unsafe extern "system" fn(This: *mut IDCompositionVisual, offsetY: c_float) -> HRESULT§SetTransform_2: unsafe extern "system" fn(This: *mut IDCompositionVisual, transform: *const IDCompositionTransform) -> HRESULT§SetTransform_1: unsafe extern "system" fn(This: *mut IDCompositionVisual, matrix: *const D2D_MATRIX_3X2_F) -> HRESULT§SetTransformParent: unsafe extern "system" fn(This: *mut IDCompositionVisual, visual: *const IDCompositionVisual) -> HRESULT§SetEffect: unsafe extern "system" fn(This: *mut IDCompositionVisual, effect: *const IDCompositionEffect) -> HRESULT§SetBitmapInterpolationMode: unsafe extern "system" fn(This: *mut IDCompositionVisual, interpolationMode: DCOMPOSITION_BITMAP_INTERPOLATION_MODE) -> HRESULT§SetBorderMode: unsafe extern "system" fn(This: *mut IDCompositionVisual, borderMode: DCOMPOSITION_BORDER_MODE) -> HRESULT§SetClip_2: unsafe extern "system" fn(This: *mut IDCompositionVisual, clip: *const IDCompositionClip) -> HRESULT§SetClip_1: unsafe extern "system" fn(This: *mut IDCompositionVisual, rect: *const D2D_RECT_F) -> HRESULT§SetContent: unsafe extern "system" fn(This: *mut IDCompositionVisual, content: *const IUnknown) -> HRESULT§AddVisual: unsafe extern "system" fn(This: *mut IDCompositionVisual, visual: *const IDCompositionVisual, insertAbove: BOOL, referenceVisual: *const IDCompositionVisual) -> HRESULT§RemoveVisual: unsafe extern "system" fn(This: *mut IDCompositionVisual, visual: *const IDCompositionVisual) -> HRESULT§RemoveAllVisuals: unsafe extern "system" fn(This: *mut IDCompositionVisual) -> HRESULT§SetCompositeMode: unsafe extern "system" fn(This: *mut IDCompositionVisual, compositeMode: DCOMPOSITION_COMPOSITE_MODE) -> HRESULT

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.