PeripheralDiscovery

public struct PeripheralDiscovery : PeripheralIdentifiable
extension PeripheralDiscovery: CustomDebugStringConvertible

An object that contains the unique identifier of the CBPeripheral, the name of it (if present) and the advertising info.

  • id

    The UUID of the discovery

    Declaration

    Swift

    public var id: UUID
  • The name of the discovery

    Declaration

    Swift

    public var name: String?
  • The wrapped CBPeripheral of the discovery

    Declaration

    Swift

    public let cbPeripheral: CBPeripheral
  • The wrapped AdvertisingInfo of the discovery

    Declaration

    Swift

    public let advertisement: AdvertisingInfo
  • The wrapped rssi of the discovery

    Declaration

    Swift

    public let rssi: Int
  • Extended description of the discovery

    Declaration

    Swift

    public var debugDescription: String { get }