Struct IScrollProvider_Vtbl
#[repr(C)]pub struct IScrollProvider_Vtbl {
pub base__: IUnknown_Vtbl,
pub Scroll: unsafe extern "system" fn(_: *mut c_void, _: ScrollAmount, _: ScrollAmount) -> HRESULT,
pub SetScrollPercent: unsafe extern "system" fn(_: *mut c_void, _: f64, _: f64) -> HRESULT,
pub HorizontalScrollPercent: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT,
pub VerticalScrollPercent: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT,
pub HorizontalViewSize: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT,
pub VerticalViewSize: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT,
pub HorizontallyScrollable: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT,
pub VerticallyScrollable: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT,
}
Fields§
§base__: IUnknown_Vtbl
§Scroll: unsafe extern "system" fn(_: *mut c_void, _: ScrollAmount, _: ScrollAmount) -> HRESULT
§SetScrollPercent: unsafe extern "system" fn(_: *mut c_void, _: f64, _: f64) -> HRESULT
§HorizontalScrollPercent: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT
§VerticalScrollPercent: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT
§HorizontalViewSize: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT
§VerticalViewSize: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT
§HorizontallyScrollable: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT
§VerticallyScrollable: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT
Implementations§
§impl IScrollProvider_Vtbl
impl IScrollProvider_Vtbl
pub const fn new<Identity: IScrollProvider_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for IScrollProvider_Vtbl
impl RefUnwindSafe for IScrollProvider_Vtbl
impl Send for IScrollProvider_Vtbl
impl Sync for IScrollProvider_Vtbl
impl Unpin for IScrollProvider_Vtbl
impl UnwindSafe for IScrollProvider_Vtbl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more