[][src]Struct winapi::um::exdisp::IWebBrowserVtbl

#[repr(C)]
pub struct IWebBrowserVtbl {
    pub parent: IDispatchVtbl,
    pub GoBack: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULT,
    pub GoForward: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULT,
    pub GoHome: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULT,
    pub GoSearch: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULT,
    pub Navigate: unsafe extern "system" fn(This: *mut IWebBrowser, URL: BSTR, Flags: *const VARIANT, TargetFrameName: *const VARIANT, PostData: *const VARIANT, Headers: *const VARIANT) -> HRESULT,
    pub Refresh: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULT,
    pub Refresh2: unsafe extern "system" fn(This: *mut IWebBrowser, Level: *const VARIANT) -> HRESULT,
    pub Stop: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULT,
    pub get_Application: unsafe extern "system" fn(This: *mut IWebBrowser, ppDisp: *mut *mut IDispatch) -> HRESULT,
    pub get_Parent: unsafe extern "system" fn(This: *mut IWebBrowser, ppDisp: *mut *mut IDispatch) -> HRESULT,
    pub get_Container: unsafe extern "system" fn(This: *mut IWebBrowser, ppDisp: *mut *mut IDispatch) -> HRESULT,
    pub get_Document: unsafe extern "system" fn(This: *mut IWebBrowser, ppDisp: *mut *mut IDispatch) -> HRESULT,
    pub get_TopLevelContainer: unsafe extern "system" fn(This: *mut IWebBrowser, pBool: *mut VARIANT_BOOL) -> HRESULT,
    pub get_Type: unsafe extern "system" fn(This: *mut IWebBrowser, Type: *mut BSTR) -> HRESULT,
    pub get_Left: unsafe extern "system" fn(This: *mut IWebBrowser, pl: *mut LONG) -> HRESULT,
    pub put_Left: unsafe extern "system" fn(This: *mut IWebBrowser, Left: LONG) -> HRESULT,
    pub get_Top: unsafe extern "system" fn(This: *mut IWebBrowser, pl: *mut LONG) -> HRESULT,
    pub put_Top: unsafe extern "system" fn(This: *mut IWebBrowser, Top: LONG) -> HRESULT,
    pub get_Width: unsafe extern "system" fn(This: *mut IWebBrowser, pl: *mut LONG) -> HRESULT,
    pub put_Width: unsafe extern "system" fn(This: *mut IWebBrowser, Width: LONG) -> HRESULT,
    pub get_Height: unsafe extern "system" fn(This: *mut IWebBrowser, pl: *mut LONG) -> HRESULT,
    pub put_Height: unsafe extern "system" fn(This: *mut IWebBrowser, Height: LONG) -> HRESULT,
    pub get_LocationName: unsafe extern "system" fn(This: *mut IWebBrowser, LocationName: *mut BSTR) -> HRESULT,
    pub get_LocationURL: unsafe extern "system" fn(This: *mut IWebBrowser, LocationURL: *mut BSTR) -> HRESULT,
    pub get_Busy: unsafe extern "system" fn(This: *mut IWebBrowser, pBool: *mut VARIANT_BOOL) -> HRESULT,
}

Fields

parent: IDispatchVtblGoBack: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULTGoForward: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULTGoHome: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULTGoSearch: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULTNavigate: unsafe extern "system" fn(This: *mut IWebBrowser, URL: BSTR, Flags: *const VARIANT, TargetFrameName: *const VARIANT, PostData: *const VARIANT, Headers: *const VARIANT) -> HRESULTRefresh: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULTRefresh2: unsafe extern "system" fn(This: *mut IWebBrowser, Level: *const VARIANT) -> HRESULTStop: unsafe extern "system" fn(This: *mut IWebBrowser) -> HRESULTget_Application: unsafe extern "system" fn(This: *mut IWebBrowser, ppDisp: *mut *mut IDispatch) -> HRESULTget_Parent: unsafe extern "system" fn(This: *mut IWebBrowser, ppDisp: *mut *mut IDispatch) -> HRESULTget_Container: unsafe extern "system" fn(This: *mut IWebBrowser, ppDisp: *mut *mut IDispatch) -> HRESULTget_Document: unsafe extern "system" fn(This: *mut IWebBrowser, ppDisp: *mut *mut IDispatch) -> HRESULTget_TopLevelContainer: unsafe extern "system" fn(This: *mut IWebBrowser, pBool: *mut VARIANT_BOOL) -> HRESULTget_Type: unsafe extern "system" fn(This: *mut IWebBrowser, Type: *mut BSTR) -> HRESULTget_Left: unsafe extern "system" fn(This: *mut IWebBrowser, pl: *mut LONG) -> HRESULTput_Left: unsafe extern "system" fn(This: *mut IWebBrowser, Left: LONG) -> HRESULTget_Top: unsafe extern "system" fn(This: *mut IWebBrowser, pl: *mut LONG) -> HRESULTput_Top: unsafe extern "system" fn(This: *mut IWebBrowser, Top: LONG) -> HRESULTget_Width: unsafe extern "system" fn(This: *mut IWebBrowser, pl: *mut LONG) -> HRESULTput_Width: unsafe extern "system" fn(This: *mut IWebBrowser, Width: LONG) -> HRESULTget_Height: unsafe extern "system" fn(This: *mut IWebBrowser, pl: *mut LONG) -> HRESULTput_Height: unsafe extern "system" fn(This: *mut IWebBrowser, Height: LONG) -> HRESULTget_LocationName: unsafe extern "system" fn(This: *mut IWebBrowser, LocationName: *mut BSTR) -> HRESULTget_LocationURL: unsafe extern "system" fn(This: *mut IWebBrowser, LocationURL: *mut BSTR) -> HRESULTget_Busy: unsafe extern "system" fn(This: *mut IWebBrowser, pBool: *mut VARIANT_BOOL) -> HRESULT

Auto Trait Implementations

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]