Struct IBrowserService
pub struct IBrowserService(/* private fields */);Implementations§
§impl IBrowserService
 
impl IBrowserService
pub unsafe fn GetParentSite(&self) -> Result<IOleInPlaceSite>
pub unsafe fn SetTitle<P0, P1>(&self, psv: P0, pszname: P1) -> Result<()>where
    P0: Param<IShellView>,
    P1: Param<PCWSTR>,
pub unsafe fn GetTitle<P0>(&self, psv: P0, pszname: &mut [u16]) -> Result<()>where
    P0: Param<IShellView>,
pub unsafe fn GetOleObject(&self) -> Result<IOleObject>
pub unsafe fn GetTravelLog(&self) -> Result<ITravelLog>
pub unsafe fn ShowControlWindow(&self, id: u32, fshow: bool) -> Result<()>
pub unsafe fn IsControlWindowShown(&self, id: u32) -> Result<BOOL>
pub unsafe fn IEGetDisplayName( &self, pidl: *const ITEMIDLIST, pwszname: PWSTR, uflags: u32, ) -> Result<()>
pub unsafe fn IEParseDisplayName<P1>(
    &self,
    uicp: u32,
    pwszpath: P1,
) -> Result<*mut ITEMIDLIST>where
    P1: Param<PCWSTR>,
pub unsafe fn DisplayParseError<P1>(
    &self,
    hres: HRESULT,
    pwszpath: P1,
) -> Result<()>where
    P1: Param<PCWSTR>,
pub unsafe fn NotifyRedirect<P0>(
    &self,
    psv: P0,
    pidl: *const ITEMIDLIST,
) -> Result<BOOL>where
    P0: Param<IShellView>,
pub unsafe fn UpdateWindowList(&self) -> Result<()>
pub unsafe fn UpdateBackForwardState(&self) -> Result<()>
pub unsafe fn SetFlags(&self, dwflags: u32, dwflagmask: u32) -> Result<()>
pub unsafe fn GetFlags(&self) -> Result<u32>
pub unsafe fn GetPidl(&self) -> Result<*mut ITEMIDLIST>
pub unsafe fn SetReferrer(&self, pidl: *const ITEMIDLIST) -> Result<()>
pub unsafe fn GetBrowserIndex(&self) -> u32
pub unsafe fn GetBrowserByIndex(&self, dwid: u32) -> Result<IUnknown>
pub unsafe fn GetHistoryObject( &self, ppole: *mut Option<IOleObject>, pstm: *mut Option<IStream>, ppbc: *mut Option<IBindCtx>, ) -> Result<()>
pub unsafe fn SetHistoryObject<P0>(
    &self,
    pole: P0,
    fislocalanchor: bool,
) -> Result<()>where
    P0: Param<IOleObject>,
pub unsafe fn CacheOLEServer<P0>(&self, pole: P0) -> Result<()>where
    P0: Param<IOleObject>,
pub unsafe fn GetSetCodePage(&self, pvarin: *const VARIANT) -> Result<VARIANT>
pub unsafe fn OnHttpEquiv<P0>(
    &self,
    psv: P0,
    fdone: bool,
    pvarargin: *const VARIANT,
) -> Result<VARIANT>where
    P0: Param<IShellView>,
pub unsafe fn GetPalette(&self) -> Result<HPALETTE>
pub unsafe fn RegisterWindow( &self, fforceregister: bool, swc: ShellWindowTypeConstants, ) -> Result<()>
Trait Implementations§
§impl CanInto<IBrowserService> for IBrowserService2
 
impl CanInto<IBrowserService> for IBrowserService2
§impl CanInto<IBrowserService> for IBrowserService3
 
impl CanInto<IBrowserService> for IBrowserService3
§impl CanInto<IBrowserService> for IBrowserService4
 
impl CanInto<IBrowserService> for IBrowserService4
§impl CanInto<IUnknown> for IBrowserService
 
impl CanInto<IUnknown> for IBrowserService
§impl Clone for IBrowserService
 
impl Clone for IBrowserService
§fn clone(&self) -> IBrowserService
 
fn clone(&self) -> IBrowserService
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read more§impl Debug for IBrowserService
 
impl Debug for IBrowserService
§impl From<&IBrowserService> for &IUnknown
 
impl From<&IBrowserService> for &IUnknown
§fn from(value: &IBrowserService) -> Self
 
fn from(value: &IBrowserService) -> Self
Converts to this type from the input type.
§impl From<&IBrowserService2> for &IBrowserService
 
impl From<&IBrowserService2> for &IBrowserService
§fn from(value: &IBrowserService2) -> Self
 
fn from(value: &IBrowserService2) -> Self
Converts to this type from the input type.
§impl From<&IBrowserService3> for &IBrowserService
 
impl From<&IBrowserService3> for &IBrowserService
§fn from(value: &IBrowserService3) -> Self
 
fn from(value: &IBrowserService3) -> Self
Converts to this type from the input type.
§impl From<&IBrowserService4> for &IBrowserService
 
impl From<&IBrowserService4> for &IBrowserService
§fn from(value: &IBrowserService4) -> Self
 
fn from(value: &IBrowserService4) -> Self
Converts to this type from the input type.
§impl From<IBrowserService> for IUnknown
 
impl From<IBrowserService> for IUnknown
§fn from(value: IBrowserService) -> Self
 
fn from(value: IBrowserService) -> Self
Converts to this type from the input type.
§impl From<IBrowserService2> for IBrowserService
 
impl From<IBrowserService2> for IBrowserService
§fn from(value: IBrowserService2) -> Self
 
fn from(value: IBrowserService2) -> Self
Converts to this type from the input type.
§impl From<IBrowserService3> for IBrowserService
 
impl From<IBrowserService3> for IBrowserService
§fn from(value: IBrowserService3) -> Self
 
fn from(value: IBrowserService3) -> Self
Converts to this type from the input type.
§impl From<IBrowserService4> for IBrowserService
 
impl From<IBrowserService4> for IBrowserService
§fn from(value: IBrowserService4) -> Self
 
fn from(value: IBrowserService4) -> Self
Converts to this type from the input type.
§impl Interface for IBrowserService
 
impl Interface for IBrowserService
§fn as_raw(&self) -> *mut c_void
 
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the 
Interface implementation.§fn into_raw(self) -> *mut c_void
 
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
 
unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
§fn cast<T>(&self) -> Result<T, Error>where
    T: Interface,
 
fn cast<T>(&self) -> Result<T, Error>where
    T: Interface,
Attempts to cast the current interface to another interface using 
QueryInterface. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
    T: ComObjectInner,
    <T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
 
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
    T: ComObjectInner,
    <T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any]. Read more§fn is_object<T>(&self) -> boolwhere
    T: ComObjectInner,
    <T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
 
fn is_object<T>(&self) -> boolwhere
    T: ComObjectInner,
    <T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
    T: ComObjectInner,
    <T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
 
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
    T: ComObjectInner,
    <T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl, not the inner &MyApp object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
    T: ComObjectInner,
    <T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
 
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
    T: ComObjectInner,
    <T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any]. It returns a reference to the “outer”
object, e.g. MyApp_Impl, not the inner MyApp object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
 
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak] reference to this object.§impl PartialEq for IBrowserService
 
impl PartialEq for IBrowserService
impl Eq for IBrowserService
impl StructuralPartialEq for IBrowserService
Auto Trait Implementations§
impl Freeze for IBrowserService
impl RefUnwindSafe for IBrowserService
impl !Send for IBrowserService
impl !Sync for IBrowserService
impl Unpin for IBrowserService
impl UnwindSafe for IBrowserService
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