Enum dbs_upcall::UpcallClientError
source · pub enum UpcallClientError {
InvalidMessage(String),
ServerConnect(Error),
ServiceConnect(Error),
SendRequest(Error),
GetResponse(Error),
TimerFd(Error),
UpcallIsNotConnected,
UpcallIsBusy,
}
Expand description
Upcall client error.
Variants§
InvalidMessage(String)
Received invalid upcall message.
ServerConnect(Error)
Upcall server connect error.
ServiceConnect(Error)
Upcall service connect error.
SendRequest(Error)
Upcall send request error.
GetResponse(Error)
Upcall get response error.
TimerFd(Error)
Errors with timerfd.
UpcallIsNotConnected
Upcall is not connected.
UpcallIsBusy
Upcall is busy now.
Trait Implementations§
source§impl Debug for UpcallClientError
impl Debug for UpcallClientError
source§impl Display for UpcallClientError
impl Display for UpcallClientError
source§impl Error for UpcallClientError
impl Error for UpcallClientError
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()