pub struct IRunningObjectTable(/* private fields */);Implementations§
Source§impl IRunningObjectTable
impl IRunningObjectTable
pub unsafe fn Register<'a, T1__: IntoParam<'a, IUnknown>, T2__: IntoParam<'a, IMoniker>>( &self, grfflags: u32, punkobject: T1__, pmkobjectname: T2__, pdwregister: *mut u32, ) -> ErrorCode
pub unsafe fn Revoke(&self, dwregister: u32) -> ErrorCode
pub unsafe fn IsRunning<'a, T0__: IntoParam<'a, IMoniker>>( &self, pmkobjectname: T0__, ) -> ErrorCode
pub unsafe fn GetObject<'a, T0__: IntoParam<'a, IMoniker>>( &self, pmkobjectname: T0__, ppunkobject: *mut Option<IUnknown>, ) -> ErrorCode
pub unsafe fn NoteChangeTime( &self, dwregister: u32, pfiletime: *mut FILETIME, ) -> ErrorCode
pub unsafe fn GetTimeOfLastChange<'a, T0__: IntoParam<'a, IMoniker>>( &self, pmkobjectname: T0__, pfiletime: *mut FILETIME, ) -> ErrorCode
pub unsafe fn EnumRunning( &self, ppenummoniker: *mut Option<IEnumMoniker>, ) -> ErrorCode
Trait Implementations§
Source§impl Clone for IRunningObjectTable
impl Clone for IRunningObjectTable
Source§fn clone(&self) -> IRunningObjectTable
fn clone(&self) -> IRunningObjectTable
Returns a duplicate 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 moreSource§impl Debug for IRunningObjectTable
impl Debug for IRunningObjectTable
Source§impl From<&IRunningObjectTable> for IUnknown
impl From<&IRunningObjectTable> for IUnknown
Source§fn from(value: &IRunningObjectTable) -> Self
fn from(value: &IRunningObjectTable) -> Self
Converts to this type from the input type.
Source§impl From<IRunningObjectTable> for IUnknown
impl From<IRunningObjectTable> for IUnknown
Source§fn from(value: IRunningObjectTable) -> Self
fn from(value: IRunningObjectTable) -> Self
Converts to this type from the input type.
Source§impl Interface for IRunningObjectTable
impl Interface for IRunningObjectTable
const IID: Guid
type Vtable = IRunningObjectTable_abi
Source§impl<'a> IntoParam<'a, IUnknown> for &'a IRunningObjectTable
impl<'a> IntoParam<'a, IUnknown> for &'a IRunningObjectTable
fn into_param(self) -> Param<'a, IUnknown>
Source§impl<'a> IntoParam<'a, IUnknown> for IRunningObjectTable
impl<'a> IntoParam<'a, IUnknown> for IRunningObjectTable
fn into_param(self) -> Param<'a, IUnknown>
Source§impl PartialEq for IRunningObjectTable
impl PartialEq for IRunningObjectTable
impl Eq for IRunningObjectTable
impl StructuralPartialEq for IRunningObjectTable
Auto Trait Implementations§
impl Freeze for IRunningObjectTable
impl RefUnwindSafe for IRunningObjectTable
impl !Send for IRunningObjectTable
impl !Sync for IRunningObjectTable
impl Unpin for IRunningObjectTable
impl UnwindSafe for IRunningObjectTable
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
Source§fn set_abi(&mut self) -> *mut <T as Abi>::Abi
fn set_abi(&mut self) -> *mut <T as Abi>::Abi
Returns a pointer for setting the object’s value via an ABI call.
Source§unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
Casts the ABI representation to a Rust object by taking ownership of the bits.
fn drop_param(_: &mut Param<'_, Self>)
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