Enum wsvc::server::WsvcServerError
source · pub enum WsvcServerError {
WsvcError(WsvcError),
SerializationError(Error),
NetworkError(Error),
DataError(String),
}
Expand description
WsvcServerError
stand for server error.
Variants§
Trait Implementations§
source§impl Debug for WsvcServerError
impl Debug for WsvcServerError
source§impl Display for WsvcServerError
impl Display for WsvcServerError
source§impl Error for WsvcServerError
impl Error for WsvcServerError
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()
source§impl From<Error> for WsvcServerError
impl From<Error> for WsvcServerError
source§impl From<Error> for WsvcServerError
impl From<Error> for WsvcServerError
Auto Trait Implementations§
impl !RefUnwindSafe for WsvcServerError
impl Send for WsvcServerError
impl Sync for WsvcServerError
impl Unpin for WsvcServerError
impl !UnwindSafe for WsvcServerError
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