Enum mdns_sd::ServiceEvent [−][src]
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)Started searching for a service type.
Tuple Fields of SearchStarted
0: StringFound a specific (service_type, fullname).
ServiceResolved(ServiceInfo)Resolved a service instance with detailed info.
Tuple Fields of ServiceResolved
0: ServiceInfoA service instance (service_type, fullname) was removed.
SearchStopped(String)Stopped searching for a service type.
Tuple Fields of SearchStopped
0: String