windows::UI::Composition

Struct ICompositionPropertySet_Vtbl

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

Fields§

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

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.