struct NetworkInterfaceInformation about a network interface.
-
Writes this Struct to the given
TraitEncoder. ThrowsHomeError.parseErrorif the data could not be encoded.Declaration
Swift
func encode(with encoder: TraitEncoder) throws -
A list of the IPv4 addresses that are assigned to the network interface.
Declaration
Swift
let iPv4Addresses: [Data] -
A list of the unicast IPv6 addresses that are assigned to the network interface. This list includes the node’s link-local address and should include any assigned GUA and ULA addresses. This list must not include any multicast group addresses to which the node has subscribed.
Declaration
Swift
let iPv6Addresses: [Data] -
Creates a new Struct instance using data read from the given
TraitDecoder.Throws
HomeError.parseErrorwhen parsing fails.Declaration
Swift
init(decoder: TraitDecoder) throwsParameters
decoderThe raw data representing this Struct.
-
Returns the field corresponding to the given field ID.
Declaration
Swift
static func structField(id: UInt32) -> (any Field)?