MountDetectionTypeEnum

enum MountDetectionTypeEnum

The method or mechanism used to detect and determine the current mount state.

  • The mount detection type is unspecified.

    Declaration

    Swift

    case unspecified
  • Unofficial mount or overridden by the user with the mountTypeOverride [MountTrait.Attributes.mountTypeOverride].

    Declaration

    Swift

    case userOverride
  • The mount state is determined by magnetic sensors.

    Declaration

    Swift

    case magnetic
  • The mount state is determined by other hardware mechanisms such as pins, wiring, or electrical signals.

    Declaration

    Swift

    case other
  • Creates a new instance with the specified raw value.

    If there is no value of the type that corresponds with the specified raw value, this initializer returns nil. For example:

    enum PaperSize: String {
        case A4, A5, Letter, Legal
    }
    
    print(PaperSize(rawValue: "Legal"))
    // Prints "Optional(PaperSize.Legal)"
    
    print(PaperSize(rawValue: "Tabloid"))
    // Prints "nil"
    

    Declaration

    Swift

    init?(rawValue: UInt64)

    Parameters

    rawValue

    The raw value to use for the new instance.