struct AttributesAttributes for the EnergyPreferenceTrait.
-
A list of the attribute IDs of the attributes supported by the cluster instance. Nullable: false.
Declaration
Swift
@TraitAttribute var attributeList: [UInt32]? { get } -
A list of at least two
BalanceStructs, each representing a step along a linear scale of relative priorities. Nullable: false.Declaration
Swift
@TraitAttribute var energyBalances: [Google.EnergyPreferenceTrait.BalanceStruct]? { get } -
The current preference of the user for balancing different priorities during device use. The value of this attribute is the 0-based index into the
energyBalancesattribute for the currently selected balance. Nullable: false.Declaration
Swift
@TraitAttribute var currentEnergyBalance: UInt8? { get } -
Two extremes for interpreting the values in the
energyBalancesattribute. These two priorities are in opposition to each other, for exampleComfortversusEfficiencyorSpeedversusWaterConsumption. Nullable: false.Declaration
Swift
@TraitAttribute var energyPriorities: [Google.EnergyPreferenceTrait.EnergyPriorityEnum]? { get } -
A list of at least two
BalanceStructs, each representing a condition or set of conditions for the device to enter low-power mode. Nullable: false.Declaration
Swift
@TraitAttribute var lowPowerModeSensitivities: [Google.EnergyPreferenceTrait.BalanceStruct]? { get } -
The current preference of the user for how quickly a device should enter low power mode. The value of this attribute is the 0-based index into the
lowPowerModeSensitivitiesattribute for the currently selected sensitivity. Nullable: false.Declaration
Swift
@TraitAttribute var currentLowPowerModeSensitivity: UInt8? { 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 } -
A list of client-generated commands which are supported by this cluster server instance.
Nullable: false.
Declaration
Swift
@TraitAttribute var acceptedCommandList: [UInt32]? { get } -
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: Google.EnergyPreferenceTrait.Feature? { get } -
The revision of the server cluster specification supported by the cluster instance. Nullable: false.
Declaration
Swift
@TraitAttribute var clusterRevision: UInt16? { get } -
The trait identifier.
Declaration
Swift
static var identifier: String { get } -
Writes this object to the given
TraitEncoder. ThrowsHomeError.encodingFailedif the data could not be encoded.Declaration
Swift
func encode(with encoder: TraitEncoder) throws -
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
static func == (lhs: Google.EnergyPreferenceTrait.Attributes, rhs: Google.EnergyPreferenceTrait.Attributes) -> BoolParameters
lhsA value to compare.
rhsAnother value to compare.
-
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
In your implementation of
hash(into:), don’t callfinalize()on thehasherinstance 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)