Struct IPackageDebugSettings2
pub struct IPackageDebugSettings2(/* private fields */);Implementations§
Methods from Deref<Target = 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 IPackageDebugSettings2
 
impl CanInto<IUnknown> for IPackageDebugSettings2
§impl Clone for IPackageDebugSettings2
 
impl Clone for IPackageDebugSettings2
§fn clone(&self) -> IPackageDebugSettings2
 
fn clone(&self) -> IPackageDebugSettings2
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 IPackageDebugSettings2
 
impl Debug for IPackageDebugSettings2
§impl Deref for IPackageDebugSettings2
 
impl Deref for IPackageDebugSettings2
§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<&IPackageDebugSettings2> for &IUnknown
 
impl From<&IPackageDebugSettings2> for &IUnknown
§fn from(value: &IPackageDebugSettings2) -> Self
 
fn from(value: &IPackageDebugSettings2) -> 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<IPackageDebugSettings2> for IUnknown
 
impl From<IPackageDebugSettings2> for IUnknown
§fn from(value: IPackageDebugSettings2) -> Self
 
fn from(value: IPackageDebugSettings2) -> Self
Converts to this type from the input type.
§impl Interface for IPackageDebugSettings2
 
impl Interface for IPackageDebugSettings2
§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 IPackageDebugSettings2
 
impl PartialEq for IPackageDebugSettings2
impl Eq for IPackageDebugSettings2
impl StructuralPartialEq for IPackageDebugSettings2
Auto Trait Implementations§
impl Freeze for IPackageDebugSettings2
impl RefUnwindSafe for IPackageDebugSettings2
impl !Send for IPackageDebugSettings2
impl !Sync for IPackageDebugSettings2
impl Unpin for IPackageDebugSettings2
impl UnwindSafe for IPackageDebugSettings2
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