#[repr(C)]
pub struct ICompositionNineGridBrush_Vtbl {
Show 25 fields pub base__: IInspectable_Vtbl, pub BottomInset: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT, pub SetBottomInset: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT, pub BottomInsetScale: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT, pub SetBottomInsetScale: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT, pub IsCenterHollow: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT, pub SetIsCenterHollow: unsafe extern "system" fn(_: *mut c_void, _: bool) -> HRESULT, pub LeftInset: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT, pub SetLeftInset: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT, pub LeftInsetScale: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT, pub SetLeftInsetScale: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT, pub RightInset: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT, pub SetRightInset: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT, pub RightInsetScale: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT, pub SetRightInsetScale: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT, pub Source: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub SetSource: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub TopInset: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT, pub SetTopInset: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT, pub TopInsetScale: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT, pub SetTopInsetScale: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT, pub SetInsets: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT, pub SetInsetsWithValues: unsafe extern "system" fn(_: *mut c_void, _: f32, _: f32, _: f32, _: f32) -> HRESULT, pub SetInsetScales: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT, pub SetInsetScalesWithValues: unsafe extern "system" fn(_: *mut c_void, _: f32, _: f32, _: f32, _: f32) -> HRESULT,
}

Fields§

§base__: IInspectable_Vtbl§BottomInset: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT§SetBottomInset: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT§BottomInsetScale: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT§SetBottomInsetScale: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT§IsCenterHollow: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT§SetIsCenterHollow: unsafe extern "system" fn(_: *mut c_void, _: bool) -> HRESULT§LeftInset: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT§SetLeftInset: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT§LeftInsetScale: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT§SetLeftInsetScale: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT§RightInset: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT§SetRightInset: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT§RightInsetScale: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT§SetRightInsetScale: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT§Source: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§SetSource: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§TopInset: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT§SetTopInset: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT§TopInsetScale: unsafe extern "system" fn(_: *mut c_void, _: *mut f32) -> HRESULT§SetTopInsetScale: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT§SetInsets: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT§SetInsetsWithValues: unsafe extern "system" fn(_: *mut c_void, _: f32, _: f32, _: f32, _: f32) -> HRESULT§SetInsetScales: unsafe extern "system" fn(_: *mut c_void, _: f32) -> HRESULT§SetInsetScalesWithValues: unsafe extern "system" fn(_: *mut c_void, _: f32, _: f32, _: f32, _: f32) -> 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.