ServiceDataMeshProvisioning
@available(swift 4.0)
@available(iOS 10.0, tvOS 10.0, watchOS 3.0, macOS 10.12, *)
final public class ServiceDataMeshProvisioning : ServiceData
extension ServiceDataMeshProvisioning: Hashable
extension ServiceDataMeshProvisioning: Equatable
BLE Mesh Provisioning Service Data
-
Service Data Name
Declaration
Swift
public static var name: String { get } -
Service Data UUID
Declaration
Swift
public static var uuidString: String { get } -
Name of the Service Data AD Type
Declaration
Swift
public var name: String { get } -
Service Data AD Type UUID String
Declaration
Swift
public var uuidString: String { get } -
Device UUID
Declaration
Swift
private(set) public var deviceUUID: String { get } -
OOB Information
Declaration
Swift
private(set) public var oobInformation: MeshOutOfBandInformation { get } -
Service Data for Mesh Provisioning
Declaration
Swift
public init(deviceUUID: String, oobInformation: MeshOutOfBandInformation)Parameters
deviceUUIDUUID For Device
oobInformationOOB Information
-
Decodes Service Data AD Data into ServiceData
Declaration
Swift
public class func decode(with data: Data) -> Result<ServiceDataMeshProvisioning, BluetoothDecodeError>Parameters
dataServiceData Data
Return Value
ServiceData Result
-
Encodes the Service Data AD Type into Data
Declaration
Swift
public func encode() -> Result<Data, BluetoothEncodeError>Return Value
Service Data AD Result
-
Encodes this value into the given encoder.
If the value fails to encode anything,
encoderwill encode an empty keyed container in its place.This function throws an error if any values are invalid for the given encoder’s format.
Declaration
Swift
public func encode(to encoder: Encoder) throwsParameters
encoderThe encoder to write data to.
-
Hashes the essential components of this value by feeding them into the given hasher.
Implement this method to conform to the
Hashableprotocol. The components used for hashing must be the same as the components compared in your type’s==operator implementation. Callhasher.combine(_:)with each of these components.Important
Never call
finalize()onhasher. Doing so may become a compile-time error in the future.Declaration
Swift
public func hash(into hasher: inout Hasher)Parameters
hasherThe hasher to use when combining the components of this instance.
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
aandb,a == bimplies thata != bisfalse.Declaration
Swift
public static func == (lhs: ServiceDataMeshProvisioning, rhs: ServiceDataMeshProvisioning) -> BoolParameters
lhsA value to compare.
rhsAnother value to compare.