[][src]Function appx::repository::packages

pub fn packages() -> Result<impl Iterator<Item = PackageFullName>>

Get the PackageFullNames installed on this computer

Examples

for pkg in appx::repository::packages().unwrap() {
    println!("{}", pkg);
}