Skip to content

ISO15693RequestFlag

treastrain edited this page May 5, 2021 · 1 revision

ISO15693RequestFlag

public struct ISO15693RequestFlag: OptionSet, Codable 

Inheritance

CaseIterable, Codable, OptionSet

Initializers

init(rawValue:)

public init(rawValue: UInt8) 

init(from:)

os(iOS) && !targetEnvironment(macCatalyst)
@available(iOS 14.0, *)
    public init(from coreNFCInstance: CoreNFC.NFCISO15693RequestFlag) 

Properties

dualSubCarriers

public static var dualSubCarriers 

highDataRate

public static var highDataRate 

protocolExtension

public static var protocolExtension 

select

public static var select 

address

public static var address 

option

public static var option 

commandSpecificBit8

public static var commandSpecificBit8 

rawValue

public let rawValue: UInt8

allCases

public static var allCases: [Self] = [
        .dualSubCarriers,
        .highDataRate,
        .protocolExtension,
        .select,
        .address,
        .option,
        .commandSpecificBit8
    ]

RequestFlagAddress

@available(*, renamed: "ISO15693RequestFlag.address")
    public static var RequestFlagAddress = Self.address

RequestFlagDualSubCarriers

@available(*, renamed: "ISO15693RequestFlag.dualSubCarriers")
    public static var RequestFlagDualSubCarriers = Self.dualSubCarriers

RequestFlagHighDataRate

@available(*, renamed: "ISO15693RequestFlag.highDataRate")
    public static var RequestFlagHighDataRate = Self.highDataRate

RequestFlagOption

@available(*, renamed: "ISO15693RequestFlag.option")
    public static var RequestFlagOption = Self.option

RequestFlagProtocolExtension

@available(*, renamed: "ISO15693RequestFlag.protocolExtension")
    public static var RequestFlagProtocolExtension = Self.protocolExtension

RequestFlagSelect

@available(*, renamed: "ISO15693RequestFlag.select")
    public static var RequestFlagSelect = Self.select
Clone this wiki locally