Struct IPackageDebugSettings
pub struct IPackageDebugSettings(/* private fields */);
Implementations§
§impl IPackageDebugSettings
impl IPackageDebugSettings
pub unsafe fn EnableDebugging<P0, P1, P2>(
&self,
packagefullname: P0,
debuggercommandline: P1,
environment: P2,
) -> Result<()>where
P0: Param<PCWSTR>,
P1: Param<PCWSTR>,
P2: Param<PCWSTR>,
pub unsafe fn DisableDebugging<P0>(&self, packagefullname: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn Suspend<P0>(&self, packagefullname: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn Resume<P0>(&self, packagefullname: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn TerminateAllProcesses<P0>(
&self,
packagefullname: P0,
) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn SetTargetSessionId(&self, sessionid: u32) -> Result<()>
pub unsafe fn EnumerateBackgroundTasks<P0>(
&self,
packagefullname: P0,
taskcount: *mut u32,
taskids: *mut *mut GUID,
tasknames: *mut *mut PCWSTR,
) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn ActivateBackgroundTask(&self, taskid: *const GUID) -> Result<()>
pub unsafe fn StartServicing<P0>(&self, packagefullname: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn StopServicing<P0>(&self, packagefullname: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn StartSessionRedirection<P0>(
&self,
packagefullname: P0,
sessionid: u32,
) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn StopSessionRedirection<P0>(
&self,
packagefullname: P0,
) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn GetPackageExecutionState<P0>(
&self,
packagefullname: P0,
) -> Result<PACKAGE_EXECUTION_STATE>where
P0: Param<PCWSTR>,
pub unsafe fn RegisterForPackageStateChanges<P0, P1>(
&self,
packagefullname: P0,
ppackageexecutionstatechangenotification: P1,
) -> Result<u32>where
P0: Param<PCWSTR>,
P1: Param<IPackageExecutionStateChangeNotification>,
pub unsafe fn UnregisterForPackageStateChanges( &self, dwcookie: u32, ) -> Result<()>
Trait Implementations§
§impl CanInto<IPackageDebugSettings> for IPackageDebugSettings2
impl CanInto<IPackageDebugSettings> for IPackageDebugSettings2
§impl CanInto<IUnknown> for IPackageDebugSettings
impl CanInto<IUnknown> for IPackageDebugSettings
§impl Clone for IPackageDebugSettings
impl Clone for IPackageDebugSettings
§fn clone(&self) -> IPackageDebugSettings
fn clone(&self) -> IPackageDebugSettings
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 IPackageDebugSettings
impl Debug for IPackageDebugSettings
§impl From<&IPackageDebugSettings> for &IUnknown
impl From<&IPackageDebugSettings> for &IUnknown
§fn from(value: &IPackageDebugSettings) -> Self
fn from(value: &IPackageDebugSettings) -> Self
Converts to this type from the input type.
§impl From<&IPackageDebugSettings2> for &IPackageDebugSettings
impl From<&IPackageDebugSettings2> for &IPackageDebugSettings
§fn from(value: &IPackageDebugSettings2) -> Self
fn from(value: &IPackageDebugSettings2) -> Self
Converts to this type from the input type.
§impl From<IPackageDebugSettings> for IUnknown
impl From<IPackageDebugSettings> for IUnknown
§fn from(value: IPackageDebugSettings) -> Self
fn from(value: IPackageDebugSettings) -> Self
Converts to this type from the input type.
§impl From<IPackageDebugSettings2> for IPackageDebugSettings
impl From<IPackageDebugSettings2> for IPackageDebugSettings
§fn from(value: IPackageDebugSettings2) -> Self
fn from(value: IPackageDebugSettings2) -> Self
Converts to this type from the input type.
§impl Interface for IPackageDebugSettings
impl Interface for IPackageDebugSettings
§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 IPackageDebugSettings
impl PartialEq for IPackageDebugSettings
impl Eq for IPackageDebugSettings
impl StructuralPartialEq for IPackageDebugSettings
Auto Trait Implementations§
impl Freeze for IPackageDebugSettings
impl RefUnwindSafe for IPackageDebugSettings
impl !Send for IPackageDebugSettings
impl !Sync for IPackageDebugSettings
impl Unpin for IPackageDebugSettings
impl UnwindSafe for IPackageDebugSettings
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