Enum mdns_sd::ServiceEvent
source · pub enum ServiceEvent {
SearchStarted(String),
ServiceFound(String, String),
ServiceResolved(ServiceInfo),
ServiceRemoved(String, String),
SearchStopped(String),
}Expand description
All possible events sent to the client from the daemon regarding service discovery.
Variants§
SearchStarted(String)
Started searching for a service type.
ServiceFound(String, String)
Found a specific (service_type, fullname).
ServiceResolved(ServiceInfo)
Resolved a service instance with detailed info.
ServiceRemoved(String, String)
A service instance (service_type, fullname) was removed.
SearchStopped(String)
Stopped searching for a service type.