struct Attributes
Attributes for the OzoneConcentrationMeasurementTrait
.
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
a
andb
,a == b
implies thata != b
isfalse
.Declaration
Swift
static func == (lhs: Matter.OzoneConcentrationMeasurementTrait.Attributes, rhs: Matter.OzoneConcentrationMeasurementTrait.Attributes) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.
-
A list of client-generated commands which are supported by this cluster server instance.
Nullable: false.
Declaration
Swift
@TraitAttribute var acceptedCommandList: [UInt32]? { get }
-
A list of the attribute IDs of the attributes supported by the cluster instance. Nullable: false.
Declaration
Swift
@TraitAttribute var attributeList: [UInt32]? { get }
-
The average value of
measuredValue
[OzoneConcentrationMeasurementTrait.Attributes.measuredValue] measured during theaverageMeasuredValueWindow
[OzoneConcentrationMeasurementTrait.Attributes.averageMeasuredValueWindow]. Nullable: true.Declaration
Swift
@TraitAttribute var averageMeasuredValue: Float32? { get }
-
The window of time, in seconds, used to measure the
averageMeasuredValue
[OzoneConcentrationMeasurementTrait.Attributes.averageMeasuredValue]. Nullable: false.Declaration
Swift
@TraitAttribute var averageMeasuredValueWindow: UInt32? { get }
-
The revision of the server cluster specification supported by the cluster instance. Nullable: false.
Declaration
Swift
@TraitAttribute var clusterRevision: UInt16? { get }
-
Writes this object to the given
TraitEncoder
. ThrowsHomeError.encodingFailed
if the data could not be encoded.Declaration
Swift
func encode(with encoder: TraitEncoder) throws
-
Whether the server supports zero or more optional cluster features. A cluster feature is a set of cluster elements that are mandatory or optional for a defined feature of the cluster. If a cluster feature is supported by the cluster instance, then the corresponding bit is set to 1, otherwise the bit is set to 0 (zero). Nullable: false.
Declaration
Swift
@TraitAttribute var featureMap: Matter.OzoneConcentrationMeasurementTrait.Feature? { get }
-
A list of server-generated commands (server to client) which are supported by this cluster server instance. Nullable: false.
Declaration
Swift
@TraitAttribute var generatedCommandList: [UInt32]? { get }
-
Hashes the essential components of this value by feeding them into the given hasher.
Implement this method to conform to the
Hashable
protocol. 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
In your implementation of
hash(into:)
, don’t callfinalize()
on thehasher
instance provided, or replace it with a different instance. Doing so may become a compile-time error in the future.Declaration
Swift
func hash(into hasher: inout Hasher)
-
The trait identifier.
Declaration
Swift
static var identifier: String { get }
-
The level of the substance detected. Nullable: false.
Declaration
Swift
@TraitAttribute var levelValue: Matter.OzoneConcentrationMeasurementTrait.LevelValueEnum? { get }
-
The maximum value of
measuredValue
[OzoneConcentrationMeasurementTrait.Attributes.measuredValue] that can be measured. Nullable: true.Declaration
Swift
@TraitAttribute var maxMeasuredValue: Float32? { get }
-
The most recent measurement as a single-precision floating-point number, in units specified by
measurementUnit
. Nullable: true.Declaration
Swift
@TraitAttribute var measuredValue: Float32? { get }
-
The medium in which
measuredValue
is being measured. Nullable: false.Declaration
Swift
@TraitAttribute var measurementMedium: Matter.OzoneConcentrationMeasurementTrait.MeasurementMediumEnum? { get }
-
The unit used by
measuredValue
. Nullable: false.Declaration
Swift
@TraitAttribute var measurementUnit: Matter.OzoneConcentrationMeasurementTrait.MeasurementUnitEnum? { get }
-
The minimum value of
measuredValue
[OzoneConcentrationMeasurementTrait.Attributes.measuredValue] that can be measured. Nullable: true.Declaration
Swift
@TraitAttribute var minMeasuredValue: Float32? { get }
-
The maximum value of
measuredValue
[OzoneConcentrationMeasurementTrait.Attributes.measuredValue] that has been measured during thepeakMeasuredValueWindow
[OzoneConcentrationMeasurementTrait.Attributes.peakMeasuredValueWindow]. Nullable: true.Declaration
Swift
@TraitAttribute var peakMeasuredValue: Float32? { get }
-
The window of time, in seconds, used to determine the
peakMeasuredValue
[OzoneConcentrationMeasurementTrait.Attributes.peakMeasuredValue]. Nullable: false.Declaration
Swift
@TraitAttribute var peakMeasuredValueWindow: UInt32? { get }
-
The range of error or deviation that can be found in
measuredValue
[OzoneConcentrationMeasurementTrait.Attributes.measuredValue] andpeakMeasuredValue
[OzoneConcentrationMeasurementTrait.Attributes.peakMeasuredValue]. Nullable: false.Declaration
Swift
@TraitAttribute var uncertainty: Float32? { get }