Name

public struct Name : RawRepresentable, ExpressibleByStringLiteral

A structure that defines the name of a feature.

  • Declaration

    Swift

    public typealias RawValue = String
  • Declaration

    Swift

    public typealias StringLiteralType = String
  • This is a feature to mix multiple audio tracks. For example, it is possible to mix .appAudio and .micAudio from ReplayKit.

    Declaration

    Swift

    public static let multiTrackAudioMixing: Name
  • The raw type value.

    Declaration

    Swift

    public let rawValue: String
  • Create a feature name by rawValue.

    Declaration

    Swift

    public init(rawValue: String)
  • Create a feature name by stringLiteral.

    Declaration

    Swift

    public init(stringLiteral value: String)