#[non_exhaustive]pub enum ZeroconfError {
Daemon(Error),
}Expand description
Errors produced by the zeroconf browse primitives.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Debug for ZeroconfError
impl Debug for ZeroconfError
Source§impl Display for ZeroconfError
impl Display for ZeroconfError
Source§impl Error for ZeroconfError
impl Error for ZeroconfError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl<T> ReportConversion<Error, Mutable, T> for ZeroconfErrorwhere
ZeroconfError: ObjectMarkerFor<T>,
impl<T> ReportConversion<Error, Mutable, T> for ZeroconfErrorwhere
ZeroconfError: ObjectMarkerFor<T>,
Auto Trait Implementations§
impl Freeze for ZeroconfError
impl RefUnwindSafe for ZeroconfError
impl Send for ZeroconfError
impl Sync for ZeroconfError
impl Unpin for ZeroconfError
impl UnsafeUnpin for ZeroconfError
impl UnwindSafe for ZeroconfError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more