Struct windows::ApplicationModel::PackageCatalog
pub struct PackageCatalog(/* private fields */);
Implementations§
§impl PackageCatalog
impl PackageCatalog
pub fn PackageStaging<P0>(&self, handler: P0) -> Result<EventRegistrationToken>
pub fn RemovePackageStaging(&self, token: EventRegistrationToken) -> Result<()>
pub fn PackageInstalling<P0>( &self, handler: P0, ) -> Result<EventRegistrationToken>
pub fn RemovePackageInstalling( &self, token: EventRegistrationToken, ) -> Result<()>
pub fn PackageUpdating<P0>(&self, handler: P0) -> Result<EventRegistrationToken>
pub fn RemovePackageUpdating(&self, token: EventRegistrationToken) -> Result<()>
pub fn PackageUninstalling<P0>( &self, handler: P0, ) -> Result<EventRegistrationToken>
pub fn RemovePackageUninstalling( &self, token: EventRegistrationToken, ) -> Result<()>
pub fn PackageStatusChanged<P0>( &self, handler: P0, ) -> Result<EventRegistrationToken>
pub fn RemovePackageStatusChanged( &self, token: EventRegistrationToken, ) -> Result<()>
pub fn PackageContentGroupStaging<P0>( &self, handler: P0, ) -> Result<EventRegistrationToken>
pub fn RemovePackageContentGroupStaging( &self, token: EventRegistrationToken, ) -> Result<()>
pub fn AddOptionalPackageAsync( &self, optionalpackagefamilyname: &HSTRING, ) -> Result<IAsyncOperation<PackageCatalogAddOptionalPackageResult>>
pub fn RemoveOptionalPackagesAsync<P0>(
&self,
optionalpackagefamilynames: P0,
) -> Result<IAsyncOperation<PackageCatalogRemoveOptionalPackagesResult>>where
P0: Param<IIterable<HSTRING>>,
pub fn AddResourcePackageAsync( &self, resourcepackagefamilyname: &HSTRING, resourceid: &HSTRING, options: AddResourcePackageOptions, ) -> Result<IAsyncOperationWithProgress<PackageCatalogAddResourcePackageResult, PackageInstallProgress>>
pub fn RemoveResourcePackagesAsync<P0>( &self, resourcepackages: P0, ) -> Result<IAsyncOperation<PackageCatalogRemoveResourcePackagesResult>>
pub fn OpenForCurrentPackage() -> Result<PackageCatalog>
pub fn OpenForCurrentUser() -> Result<PackageCatalog>
pub fn OpenForPackage<P0>(package: P0) -> Result<PackageCatalog>where
P0: Param<Package>,
Trait Implementations§
§impl CanInto<IInspectable> for PackageCatalog
impl CanInto<IInspectable> for PackageCatalog
§impl CanInto<IUnknown> for PackageCatalog
impl CanInto<IUnknown> for PackageCatalog
§impl Clone for PackageCatalog
impl Clone for PackageCatalog
§fn clone(&self) -> PackageCatalog
fn clone(&self) -> PackageCatalog
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 PackageCatalog
impl Debug for PackageCatalog
§impl From<&PackageCatalog> for &IInspectable
impl From<&PackageCatalog> for &IInspectable
§fn from(value: &PackageCatalog) -> Self
fn from(value: &PackageCatalog) -> Self
Converts to this type from the input type.
§impl From<&PackageCatalog> for &IUnknown
impl From<&PackageCatalog> for &IUnknown
§fn from(value: &PackageCatalog) -> Self
fn from(value: &PackageCatalog) -> Self
Converts to this type from the input type.
§impl From<PackageCatalog> for IInspectable
impl From<PackageCatalog> for IInspectable
§fn from(value: PackageCatalog) -> Self
fn from(value: PackageCatalog) -> Self
Converts to this type from the input type.
§impl From<PackageCatalog> for IUnknown
impl From<PackageCatalog> for IUnknown
§fn from(value: PackageCatalog) -> Self
fn from(value: PackageCatalog) -> Self
Converts to this type from the input type.
§impl Interface for PackageCatalog
impl Interface for PackageCatalog
§const IID: GUID = <IPackageCatalog as windows_core::Interface>::IID
const IID: GUID = <IPackageCatalog as windows_core::Interface>::IID
The
GUID
associated with the interface.§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 PartialEq for PackageCatalog
impl PartialEq for PackageCatalog
§fn eq(&self, other: &PackageCatalog) -> bool
fn eq(&self, other: &PackageCatalog) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for PackageCatalog
impl StructuralPartialEq for PackageCatalog
Auto Trait Implementations§
impl Freeze for PackageCatalog
impl RefUnwindSafe for PackageCatalog
impl !Send for PackageCatalog
impl !Sync for PackageCatalog
impl Unpin for PackageCatalog
impl UnwindSafe for PackageCatalog
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
)