struct UnknownStruct
extension UnknownStruct : AutomationValue, Equatable, Hashable, Sendable, StructDataRepresentable
Represents an unknown struct.
-
Creates a new Struct instance using data read from the given
TraitDecoder
.Throws
HomeError.parseError
when parsing fails.Declaration
Swift
init(decoder: TraitDecoder) throws
Parameters
decoder
The raw data representing this Struct.
-
Writes this Struct to the given
TraitEncoder
. ThrowsHomeError.parseError
if 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
a
andb
,a == b
implies thata != b
isfalse
.Declaration
Swift
static func == (lhs: UnknownStruct, rhs: UnknownStruct) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.