AttributeID

enum AttributeID
extension AttributeID : Equatable, Sendable

The identifier of a matter attribute.

  • ID of a Matter attribute.

    Declaration

    Swift

    case id(_ arg: UInt32)
  • Name of non-Matter attributes.

    Declaration

    Swift

    case name(_ arg: String)
  • Returns a Boolean value indicating whether two values are equal.

    Equality is the inverse of inequality. For any values a and b, a == b implies that a != b is false.

    Declaration

    Swift

    static func == (lhs: AttributeID, rhs: AttributeID) -> Bool

    Parameters

    lhs

    A value to compare.

    rhs

    Another value to compare.