windows::Win32::System::Ole

Struct IOleInPlaceSiteWindowless_Vtbl

#[repr(C)]
pub struct IOleInPlaceSiteWindowless_Vtbl {
Show 13 fields pub base__: IOleInPlaceSiteEx_Vtbl, pub CanWindowlessActivate: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub GetCapture: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub SetCapture: unsafe extern "system" fn(_: *mut c_void, _: BOOL) -> HRESULT, pub GetFocus: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub SetFocus: unsafe extern "system" fn(_: *mut c_void, _: BOOL) -> HRESULT, pub GetDC: unsafe extern "system" fn(_: *mut c_void, _: *const RECT, _: u32, _: *mut HDC) -> HRESULT, pub ReleaseDC: unsafe extern "system" fn(_: *mut c_void, _: HDC) -> HRESULT, pub InvalidateRect: unsafe extern "system" fn(_: *mut c_void, _: *const RECT, _: BOOL) -> HRESULT, pub InvalidateRgn: unsafe extern "system" fn(_: *mut c_void, _: HRGN, _: BOOL) -> HRESULT, pub ScrollRect: unsafe extern "system" fn(_: *mut c_void, _: i32, _: i32, _: *const RECT, _: *const RECT) -> HRESULT, pub AdjustRect: unsafe extern "system" fn(_: *mut c_void, _: *mut RECT) -> HRESULT, pub OnDefWindowMessage: unsafe extern "system" fn(_: *mut c_void, _: u32, _: WPARAM, _: LPARAM, _: *mut LRESULT) -> HRESULT,
}

Fields§

§base__: IOleInPlaceSiteEx_Vtbl§CanWindowlessActivate: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§GetCapture: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§SetCapture: unsafe extern "system" fn(_: *mut c_void, _: BOOL) -> HRESULT§GetFocus: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§SetFocus: unsafe extern "system" fn(_: *mut c_void, _: BOOL) -> HRESULT§GetDC: unsafe extern "system" fn(_: *mut c_void, _: *const RECT, _: u32, _: *mut HDC) -> HRESULT§ReleaseDC: unsafe extern "system" fn(_: *mut c_void, _: HDC) -> HRESULT§InvalidateRect: unsafe extern "system" fn(_: *mut c_void, _: *const RECT, _: BOOL) -> HRESULT§InvalidateRgn: unsafe extern "system" fn(_: *mut c_void, _: HRGN, _: BOOL) -> HRESULT§ScrollRect: unsafe extern "system" fn(_: *mut c_void, _: i32, _: i32, _: *const RECT, _: *const RECT) -> HRESULT§AdjustRect: unsafe extern "system" fn(_: *mut c_void, _: *mut RECT) -> HRESULT§OnDefWindowMessage: unsafe extern "system" fn(_: *mut c_void, _: u32, _: WPARAM, _: LPARAM, _: *mut LRESULT) -> HRESULT

Implementations§

§

impl IOleInPlaceSiteWindowless_Vtbl

pub const fn new<Identity: IOleInPlaceSiteWindowless_Impl, const OFFSET: isize>() -> Self

pub fn matches(iid: &GUID) -> bool

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.