pub enum ForwarderError {
Io(Error),
Face(FaceError),
Command {
code: u64,
text: String,
},
MalformedResponse,
Shm(ShmError),
}Expand description
Error type for ForwarderClient operations.
Variants§
Trait Implementations§
Source§impl Debug for ForwarderError
impl Debug for ForwarderError
Source§impl Display for ForwarderError
impl Display for ForwarderError
Source§impl Error for ForwarderError
impl Error for ForwarderError
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 From<Error> for ForwarderError
impl From<Error> for ForwarderError
Source§impl From<FaceError> for ForwarderError
impl From<FaceError> for ForwarderError
Auto Trait Implementations§
impl Freeze for ForwarderError
impl !RefUnwindSafe for ForwarderError
impl Send for ForwarderError
impl Sync for ForwarderError
impl Unpin for ForwarderError
impl !UnwindSafe for ForwarderError
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