MissionUpdaterUploadState

public enum MissionUpdaterUploadState : CustomStringConvertible, Equatable

Update file upload state.

  • Update files are currently being upload.

    Declaration

    Swift

    case uploading
  • The request update file has successfully been upload.

    Declaration

    Swift

    case success
  • The requested update file failed to be uploaded.

    Declaration

    Swift

    case failed(error: MissionUpdaterError)
  • Debug description.

    Declaration

    Swift

    public var description: String { get }
  • Declaration

    Swift

    public static func == (lhs: MissionUpdaterUploadState, rhs: MissionUpdaterUploadState) -> Bool