@@ -384,7 +384,7 @@ import Testing
384
384
extension ProgressManager . Properties {
385
385
386
386
var counter : Counter . Type { Counter . self }
387
- struct Counter : Sendable , Property {
387
+ struct Counter : Sendable , ProgressManager . Property {
388
388
389
389
typealias Value = Int
390
390
@@ -488,7 +488,7 @@ extension ProgressManager.Properties {
488
488
489
489
extension ProgressManager . Properties {
490
490
var byteSize : ByteSize . Type { ByteSize . self }
491
- struct ByteSize : Sendable , Property {
491
+ struct ByteSize : Sendable , ProgressManager . Property {
492
492
493
493
typealias Value = UInt64
494
494
@@ -594,7 +594,7 @@ func doSomethingTwoLevels(subprogress: consuming Subprogress) async {
594
594
extension ProgressManager . Properties {
595
595
596
596
var justADouble : JustADouble . Type { JustADouble . self }
597
- struct JustADouble : Sendable , Property {
597
+ struct JustADouble : Sendable , ProgressManager . Property {
598
598
599
599
typealias Value = Double
600
600
@@ -697,7 +697,7 @@ extension ProgressManager.Properties {
697
697
extension ProgressManager . Properties {
698
698
699
699
var downloadedFile : DownloadedFile . Type { DownloadedFile . self }
700
- struct DownloadedFile : Sendable , Property {
700
+ struct DownloadedFile : Sendable , ProgressManager . Property {
701
701
702
702
typealias Value = String ?
703
703
@@ -797,7 +797,7 @@ extension ProgressManager.Properties {
797
797
extension ProgressManager . Properties {
798
798
799
799
var processingFile : ProcessingFile . Type { ProcessingFile . self }
800
- struct ProcessingFile : Sendable , Property {
800
+ struct ProcessingFile : Sendable , ProgressManager . Property {
801
801
802
802
typealias Value = String ?
803
803
@@ -896,7 +896,7 @@ extension ProgressManager.Properties {
896
896
897
897
extension ProgressManager . Properties {
898
898
var imageURL : ImageURL . Type { ImageURL . self }
899
- struct ImageURL : Sendable , Property {
899
+ struct ImageURL : Sendable , ProgressManager . Property {
900
900
901
901
typealias Value = URL ?
902
902
@@ -989,7 +989,7 @@ extension ProgressManager.Properties {
989
989
990
990
extension ProgressManager . Properties {
991
991
var totalPixelCount : TotalPixelCount . Type { TotalPixelCount . self }
992
- struct TotalPixelCount : Sendable , Property {
992
+ struct TotalPixelCount : Sendable , ProgressManager . Property {
993
993
typealias Value = UInt64
994
994
995
995
typealias Summary = [ UInt64 ]
@@ -1082,7 +1082,7 @@ extension ProgressManager.Properties {
1082
1082
1083
1083
extension ProgressManager . Properties {
1084
1084
var viralIndeterminate : ViralIndeterminate . Type { ViralIndeterminate . self }
1085
- struct ViralIndeterminate : Sendable , Property {
1085
+ struct ViralIndeterminate : Sendable , ProgressManager . Property {
1086
1086
typealias Value = Int
1087
1087
1088
1088
typealias Summary = Int
@@ -1183,7 +1183,7 @@ extension ProgressManager.Properties {
1183
1183
1184
1184
extension ProgressManager . Properties {
1185
1185
var processTime : ProcessTime . Type { ProcessTime . self }
1186
- struct ProcessTime : Sendable , Property {
1186
+ struct ProcessTime : Sendable , ProgressManager . Property {
1187
1187
1188
1188
typealias Value = Duration
1189
1189
0 commit comments