DBFILESRestoreErrorTag
Objective-C
enum DBFILESRestoreErrorTag : NSInteger {}
Swift
@frozen enum DBFILESRestoreErrorTag : Int, @unchecked Sendable
The DBFILESRestoreErrorTag enum type represents the possible tag states
with which the DBFILESRestoreError union can exist.
-
An error occurs when downloading metadata for the file.
Declaration
Objective-C
DBFILESRestoreErrorPathLookupSwift
case pathLookup = 0 -
An error occurs when trying to restore the file to that path.
Declaration
Objective-C
DBFILESRestoreErrorPathWriteSwift
case pathWrite = 1 -
The revision is invalid. It may not exist or may point to a deleted file.
Declaration
Objective-C
DBFILESRestoreErrorInvalidRevisionSwift
case invalidRevision = 2 -
The restore is currently executing, but has not yet completed.
Declaration
Objective-C
DBFILESRestoreErrorInProgressSwift
case inProgress = 3 -
(no description).
Declaration
Objective-C
DBFILESRestoreErrorOtherSwift
case other = 4
View on GitHub
DBFILESRestoreErrorTag Enumeration Reference