pub struct IRunnableObject(/* private fields */);Implementations§
Source§impl IRunnableObject
impl IRunnableObject
pub unsafe fn GetRunningClass(&self, lpclsid: *mut Guid) -> ErrorCode
pub unsafe fn Run<'a, T0__: IntoParam<'a, IBindCtx>>( &self, pbc: T0__, ) -> ErrorCode
pub unsafe fn IsRunning(&self) -> BOOL
pub unsafe fn LockRunning<'a, T0__: IntoParam<'a, BOOL>, T1__: IntoParam<'a, BOOL>>( &self, flock: T0__, flastunlockcloses: T1__, ) -> ErrorCode
pub unsafe fn SetContainedObject<'a, T0__: IntoParam<'a, BOOL>>( &self, fcontained: T0__, ) -> ErrorCode
Trait Implementations§
Source§impl Clone for IRunnableObject
impl Clone for IRunnableObject
Source§fn clone(&self) -> IRunnableObject
fn clone(&self) -> IRunnableObject
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 IRunnableObject
impl Debug for IRunnableObject
Source§impl From<&IRunnableObject> for IUnknown
impl From<&IRunnableObject> for IUnknown
Source§fn from(value: &IRunnableObject) -> Self
fn from(value: &IRunnableObject) -> Self
Converts to this type from the input type.
Source§impl From<IRunnableObject> for IUnknown
impl From<IRunnableObject> for IUnknown
Source§fn from(value: IRunnableObject) -> Self
fn from(value: IRunnableObject) -> Self
Converts to this type from the input type.
Source§impl Interface for IRunnableObject
impl Interface for IRunnableObject
const IID: Guid
type Vtable = IRunnableObject_abi
Source§impl<'a> IntoParam<'a, IUnknown> for &'a IRunnableObject
impl<'a> IntoParam<'a, IUnknown> for &'a IRunnableObject
fn into_param(self) -> Param<'a, IUnknown>
Source§impl<'a> IntoParam<'a, IUnknown> for IRunnableObject
impl<'a> IntoParam<'a, IUnknown> for IRunnableObject
fn into_param(self) -> Param<'a, IUnknown>
Source§impl PartialEq for IRunnableObject
impl PartialEq for IRunnableObject
impl Eq for IRunnableObject
impl StructuralPartialEq for IRunnableObject
Auto Trait Implementations§
impl Freeze for IRunnableObject
impl RefUnwindSafe for IRunnableObject
impl !Send for IRunnableObject
impl !Sync for IRunnableObject
impl Unpin for IRunnableObject
impl UnwindSafe for IRunnableObject
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