pub struct IMoniker(/* private fields */);
Implementations§
§impl IMoniker
impl IMoniker
pub unsafe fn BindToObject<P0, P1, T>( &self, pbc: P0, pmktoleft: P1, ) -> Result<T>
pub unsafe fn BindToStorage<P0, P1, T>( &self, pbc: P0, pmktoleft: P1, ) -> Result<T>
pub unsafe fn Reduce<P0>(
&self,
pbc: P0,
dwreducehowfar: u32,
ppmktoleft: *mut Option<IMoniker>,
ppmkreduced: *mut Option<IMoniker>,
) -> Result<()>where
P0: Param<IBindCtx>,
pub unsafe fn ComposeWith<P0, P1>( &self, pmkright: P0, fonlyifnotgeneric: P1, ) -> Result<IMoniker>
pub unsafe fn Enum<P0>(&self, fforward: P0) -> Result<IEnumMoniker>where
P0: Param<BOOL>,
pub unsafe fn IsEqual<P0>(&self, pmkothermoniker: P0) -> HRESULTwhere
P0: Param<IMoniker>,
pub unsafe fn Hash(&self) -> Result<u32>
pub unsafe fn IsRunning<P0, P1, P2>( &self, pbc: P0, pmktoleft: P1, pmknewlyrunning: P2, ) -> Result<()>
pub unsafe fn GetTimeOfLastChange<P0, P1>( &self, pbc: P0, pmktoleft: P1, ) -> Result<FILETIME>
pub unsafe fn Inverse(&self) -> Result<IMoniker>
pub unsafe fn CommonPrefixWith<P0>(&self, pmkother: P0) -> Result<IMoniker>where
P0: Param<IMoniker>,
pub unsafe fn RelativePathTo<P0>(&self, pmkother: P0) -> Result<IMoniker>where
P0: Param<IMoniker>,
pub unsafe fn GetDisplayName<P0, P1>( &self, pbc: P0, pmktoleft: P1, ) -> Result<PWSTR>
pub unsafe fn ParseDisplayName<P0, P1, P2>( &self, pbc: P0, pmktoleft: P1, pszdisplayname: P2, pcheaten: *mut u32, ppmkout: *mut Option<IMoniker>, ) -> Result<()>
pub unsafe fn IsSystemMoniker(&self) -> Result<u32>
Methods from Deref<Target = IPersistStream>§
pub unsafe fn IsDirty(&self) -> HRESULT
pub unsafe fn Load<P0>(&self, pstm: P0) -> Result<()>where
P0: Param<IStream>,
pub unsafe fn Save<P0, P1>(&self, pstm: P0, fcleardirty: P1) -> Result<()>
pub unsafe fn GetSizeMax(&self) -> Result<u64>
Methods from Deref<Target = IPersist>§
pub unsafe fn GetClassID(&self) -> Result<GUID>
Trait Implementations§
§impl From<&IMoniker> for &IPersistStream
impl From<&IMoniker> for &IPersistStream
§impl From<IMoniker> for IPersistStream
impl From<IMoniker> for IPersistStream
§impl Interface for IMoniker
impl Interface for IMoniker
§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.
§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 Eq for IMoniker
impl StructuralPartialEq for IMoniker
Auto Trait Implementations§
impl Freeze for IMoniker
impl RefUnwindSafe for IMoniker
impl !Send for IMoniker
impl !Sync for IMoniker
impl Unpin for IMoniker
impl UnwindSafe for IMoniker
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)