SoundFontFileLoadFailure

public enum SoundFontFileLoadFailure : Error
extension SoundFontFileLoadFailure: Hashable
extension SoundFontFileLoadFailure: Equatable

Types of SF2 load failures

  • File is empty

    Declaration

    Swift

    case emptyFile(_: String)
  • File contents is not in SF2 format

    Declaration

    Swift

    case invalidFile(_: String)
  • Could not make a copy of the file

    Declaration

    Swift

    case unableToCreateFile(_: String)
  • id

    Undocumented

    Declaration

    Swift

    var id: Int { get }
  • Undocumented

    Declaration

    Swift

    var file: String { get }
  • Declaration

    Swift

    public func hash(into hasher: inout Hasher)
  • Declaration

    Swift

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