pub enum Ipv6Incoming<'a> {
AddressAdded(Ipv6Addr),
AddressRemoved(Ipv6Addr),
Data(Ipv6Packet<'a>),
}Expand description
The incoming Ipv6 data received from Thread via the ThreadDriver::set_rx_callback method
Variants§
AddressAdded(Ipv6Addr)
A notification that an IPv6 address was added to the device
AddressRemoved(Ipv6Addr)
A notification that an IPv6 address was removed from the device
Data(Ipv6Packet<'a>)
An incoming raw IPv6 packet