Enum dofus_framework::io::tcp::server::TcpServerError
source · pub enum TcpServerError {
BindingError {
address: String,
source: Error,
},
AcceptClientError(Error),
SendMessageError(TcpServerMessage),
JoiningError,
ClientTaskError(TcpClientTaskError),
}Variants§
BindingError
AcceptClientError(Error)
SendMessageError(TcpServerMessage)
JoiningError
ClientTaskError(TcpClientTaskError)
Trait Implementations§
source§impl Debug for TcpServerError
impl Debug for TcpServerError
source§impl Display for TcpServerError
impl Display for TcpServerError
source§impl Error for TcpServerError
impl Error for TcpServerError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()