#[repr(C)]
pub struct ICompositionPropertySet_Vtbl {
Show 17 fields pub base__: IInspectable_Vtbl, pub InsertColor: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Color) -> HRESULT, pub InsertMatrix3x2: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Matrix3x2) -> HRESULT, pub InsertMatrix4x4: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Matrix4x4) -> HRESULT, pub InsertQuaternion: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Quaternion) -> HRESULT, pub InsertScalar: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: f32) -> HRESULT, pub InsertVector2: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Vector2) -> HRESULT, pub InsertVector3: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Vector3) -> HRESULT, pub InsertVector4: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Vector4) -> HRESULT, pub TryGetColor: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Color, _: *mut CompositionGetValueStatus) -> HRESULT, pub TryGetMatrix3x2: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Matrix3x2, _: *mut CompositionGetValueStatus) -> HRESULT, pub TryGetMatrix4x4: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Matrix4x4, _: *mut CompositionGetValueStatus) -> HRESULT, pub TryGetQuaternion: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Quaternion, _: *mut CompositionGetValueStatus) -> HRESULT, pub TryGetScalar: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut f32, _: *mut CompositionGetValueStatus) -> HRESULT, pub TryGetVector2: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Vector2, _: *mut CompositionGetValueStatus) -> HRESULT, pub TryGetVector3: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Vector3, _: *mut CompositionGetValueStatus) -> HRESULT, pub TryGetVector4: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Vector4, _: *mut CompositionGetValueStatus) -> HRESULT,
}

Fields§

§base__: IInspectable_Vtbl§InsertColor: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Color) -> HRESULT§InsertMatrix3x2: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Matrix3x2) -> HRESULT§InsertMatrix4x4: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Matrix4x4) -> HRESULT§InsertQuaternion: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Quaternion) -> HRESULT§InsertScalar: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: f32) -> HRESULT§InsertVector2: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Vector2) -> HRESULT§InsertVector3: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Vector3) -> HRESULT§InsertVector4: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: Vector4) -> HRESULT§TryGetColor: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Color, _: *mut CompositionGetValueStatus) -> HRESULT§TryGetMatrix3x2: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Matrix3x2, _: *mut CompositionGetValueStatus) -> HRESULT§TryGetMatrix4x4: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Matrix4x4, _: *mut CompositionGetValueStatus) -> HRESULT§TryGetQuaternion: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Quaternion, _: *mut CompositionGetValueStatus) -> HRESULT§TryGetScalar: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut f32, _: *mut CompositionGetValueStatus) -> HRESULT§TryGetVector2: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Vector2, _: *mut CompositionGetValueStatus) -> HRESULT§TryGetVector3: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Vector3, _: *mut CompositionGetValueStatus) -> HRESULT§TryGetVector4: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>, _: *mut Vector4, _: *mut CompositionGetValueStatus) -> 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>,

§

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>,

§

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.