//! Errors raised by [`super::WireframeServer`] operations.
usestd::io;usethiserror::Error;/// Errors that may occur while configuring or running the server.
#[non_exhaustive]#[derive(Debug, Error)]pubenumServerError{/// Binding or configuring the listener failed.
#[error("bind error: {0}")]
Bind(#[source]io::Error),/// Accepting a connection failed.
#[error("accept error: {0}")]
Accept(#[source]io::Error),}