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.
Variants
SearchStarted(String)
Tuple Fields
0: StringStarted searching for a service type.
ServiceFound(String, String)
Found a specific (service_type, fullname).
ServiceResolved(ServiceInfo)
Tuple Fields
0: ServiceInfoResolved a service instance with detailed info.
ServiceRemoved(String, String)
A service instance (service_type, fullname) was removed.
SearchStopped(String)
Tuple Fields
0: StringStopped searching for a service type.
