pub enum StdioError {
SendRequestCommTask,
Timeout,
RecvResponseCommTask,
ClientRequestUnsupported,
}
Expand description
Errors that are specific to stdio communication.
Variants§
Trait Implementations§
Source§impl Debug for StdioError
impl Debug for StdioError
Source§impl Display for StdioError
impl Display for StdioError
Source§impl Error for StdioError
impl Error for StdioError
1.30.0 · 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 Into<ProtocolError> for StdioError
impl Into<ProtocolError> for StdioError
Source§fn into(self) -> ProtocolError
fn into(self) -> ProtocolError
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for StdioError
impl RefUnwindSafe for StdioError
impl Send for StdioError
impl Sync for StdioError
impl Unpin for StdioError
impl UnwindSafe for StdioError
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