MimiHearingGradeWHO2021

public enum MimiHearingGradeWHO2021 : Int, Codable, CaseIterable
extension MimiHearingGradeWHO2021: CustomDebugStringConvertible

Grade of a user’s hearing ability based on the WHO 2021 hearing loss report.

  • normal: Normal hearing (Less than 20 dB).
  • mild: Mild hearing loss (20 to < 35 dB).
  • moderate: Moderate hearing loss (35 to < 50 dB).
  • moderatelySevere: Moderately severe hearing loss (50 to < 65 dB).
  • severe: Severe hearing loss (65 to < 80 dB).
  • profound: Profound hearing loss (80 to < 95 dB).
  • unknown: Unable to categorize the ability.
  • Normal hearing

    You may have no trouble hearing even the quietest sounds and experience no or minimal difficulty hearing in a noisy environment.

    Declaration

    Swift

    case normal = 1
  • Mild hearing loss

    You may have no trouble understanding regular conversations, but noisy environments may present challenges.

    Declaration

    Swift

    case mild = 2
  • Moderate hearing loss

    You may find it challenging to keep up with regular conversations, particularly in noisy environments or when the speaker is distant or speaks softly.

    Declaration

    Swift

    case moderate = 3
  • Moderately severe hearing loss

    You may find it hard to keep up with regular conversations, especially in noisy environments, despite raised voices being generally audible.

    Declaration

    Swift

    case moderatelySevere = 4
  • Severe hearing loss

    You may experience significant difficulty following any conversation without hearing support.

    Declaration

    Swift

    case severe = 5
  • Profound hearing loss

    You may not be able to understand speech and most other environmental sounds in noisy places.

    Declaration

    Swift

    case profound = 6
  • Unknown hearing loss

    We were unable to calculate your hearing loss as some necessary data is missing. Please retest your hearing.

    Declaration

    Swift

    case unknown = -1
  • Declaration

    Swift

    public var debugDescription: String { get }