CellularResetState

public enum CellularResetState : String, CustomStringConvertible, CaseIterable

Settings reset state.

  • No ongoing reset.

    Declaration

    Swift

    case none
  • Settings reset in progress.

    Declaration

    Swift

    case ongoing
  • Reset was successful, drone is rebooting.

    This result is transient, reset state will change back to .none immediately after success is notified.

    Declaration

    Swift

    case success
  • Reset has failed.

    This result is transient, reset state will change back to .none immediately after failure is notified.

    Declaration

    Swift

    case failure
  • Debug description.

    Declaration

    Swift

    public var description: String { get }