searchlight 0.3.2

📡 Rust mDNS server & client library designed with user interfaces in mind
Documentation
1
2
3
4
5
6
7
8
9
use crate::errors::MultiIpIoError;

#[derive(Debug, Error)]
/// An error occurred while building a [`Discovery`](super::Discovery)
pub enum DiscoveryBuilderError {
	#[error("{0}")]
	/// An I/O error occurred (on potentially both IPv4 and IPv6 sockets)
	MultiIpIoError(MultiIpIoError),
}