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

#[repr(C)]
pub struct IWebBrowser {
    pub lpVtbl: *const IWebBrowserVtbl,
}

Fields

lpVtbl: *const IWebBrowserVtbl

Methods

impl IWebBrowser[src]

pub unsafe fn GoBack(&self) -> HRESULT[src]

pub unsafe fn GoForward(&self) -> HRESULT[src]

pub unsafe fn GoHome(&self) -> HRESULT[src]

pub unsafe fn GoSearch(&self) -> HRESULT[src]

pub unsafe fn Navigate(
    &self,
    URL: BSTR,
    Flags: *const VARIANT,
    TargetFrameName: *const VARIANT,
    PostData: *const VARIANT,
    Headers: *const VARIANT
) -> HRESULT
[src]

pub unsafe fn Refresh(&self) -> HRESULT[src]

pub unsafe fn Refresh2(&self, Level: *const VARIANT) -> HRESULT[src]

pub unsafe fn Stop(&self) -> HRESULT[src]

pub unsafe fn get_Application(&self, ppDisp: *mut *mut IDispatch) -> HRESULT[src]

pub unsafe fn get_Parent(&self, ppDisp: *mut *mut IDispatch) -> HRESULT[src]

pub unsafe fn get_Container(&self, ppDisp: *mut *mut IDispatch) -> HRESULT[src]

pub unsafe fn get_Document(&self, ppDisp: *mut *mut IDispatch) -> HRESULT[src]

pub unsafe fn get_TopLevelContainer(&self, pBool: *mut VARIANT_BOOL) -> HRESULT[src]

pub unsafe fn get_Type(&self, Type: *mut BSTR) -> HRESULT[src]

pub unsafe fn get_Left(&self, pl: *mut LONG) -> HRESULT[src]

pub unsafe fn put_Left(&self, Left: LONG) -> HRESULT[src]

pub unsafe fn get_Top(&self, pl: *mut LONG) -> HRESULT[src]

pub unsafe fn put_Top(&self, Top: LONG) -> HRESULT[src]

pub unsafe fn get_Width(&self, pl: *mut LONG) -> HRESULT[src]

pub unsafe fn put_Width(&self, Width: LONG) -> HRESULT[src]

pub unsafe fn get_Height(&self, pl: *mut LONG) -> HRESULT[src]

pub unsafe fn put_Height(&self, Height: LONG) -> HRESULT[src]

pub unsafe fn get_LocationName(&self, LocationName: *mut BSTR) -> HRESULT[src]

pub unsafe fn get_LocationURL(&self, LocationURL: *mut BSTR) -> HRESULT[src]

pub unsafe fn get_Busy(&self, pBool: *mut VARIANT_BOOL) -> HRESULT[src]

Methods from Deref<Target = IDispatch>

pub unsafe fn GetTypeInfoCount(&self, pctinfo: *mut UINT) -> HRESULT[src]

pub unsafe fn GetTypeInfo(
    &self,
    iTInfo: UINT,
    lcid: LCID,
    ppTInfo: *mut *mut ITypeInfo
) -> HRESULT
[src]

pub unsafe fn GetIDsOfNames(
    &self,
    riid: REFIID,
    rgszNames: *mut LPOLESTR,
    cNames: UINT,
    lcid: LCID,
    rgDispId: *mut DISPID
) -> HRESULT
[src]

pub unsafe fn Invoke(
    &self,
    dispIdMember: DISPID,
    riid: REFIID,
    lcid: LCID,
    wFlags: WORD,
    pDispParams: *mut DISPPARAMS,
    pVarResult: *mut VARIANT,
    pExcepInfo: *mut EXCEPINFO,
    puArgErr: *mut UINT
) -> HRESULT
[src]

Trait Implementations

impl Interface for IWebBrowser[src]

impl Deref for IWebBrowser[src]

type Target = IDispatch

The resulting type after dereferencing.

Auto Trait Implementations

impl Unpin for IWebBrowser

impl !Send for IWebBrowser

impl !Sync for IWebBrowser

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]