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
DBFILESRestoreErrorPathLookup
Swift
case pathLookup = 0
-
An error occurs when trying to restore the file to that path.
Declaration
Objective-C
DBFILESRestoreErrorPathWrite
Swift
case pathWrite = 1
-
The revision is invalid. It may not exist or may point to a deleted file.
Declaration
Objective-C
DBFILESRestoreErrorInvalidRevision
Swift
case invalidRevision = 2
-
The restore is currently executing, but has not yet completed.
Declaration
Objective-C
DBFILESRestoreErrorInProgress
Swift
case inProgress = 3
-
(no description).
Declaration
Objective-C
DBFILESRestoreErrorOther
Swift
case other = 4