VarioqubFlag

public struct VarioqubFlag : RawRepresentable, ExpressibleByStringLiteral, Equatable, Hashable, CustomStringConvertible, CustomDebugStringConvertible

A struct that defines the flag name.

  • The raw value of the flag name.

    Declaration

    Swift

    public var rawValue: String
  • Initializes the class with a value provided by the rawValue parameter.

    Declaration

    Swift

    public init(rawValue: String)

    Parameters

    rawValue

    The flag name.

  • Initializes the class with a value provided by the value parameter.

    Declaration

    Swift

    public init(stringLiteral value: String)

    Parameters

    value

    The flag name.

  • Declaration

    Swift

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

    Swift

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

    Swift

    public var description: String { get }
  • Declaration

    Swift

    public var debugDescription: String { get }