pub struct TimeoutError;Expand description
Timed out waiting for a message
This indicates that either gdb or the actor responsible for communicating with it is busy.
The actor divides its time fairly between reading messages from gdb and handling requests you send to it. It may be overwhelmed if the program being debugger sends too much to stdout or stderr.
Trait Implementations§
Source§impl Clone for TimeoutError
impl Clone for TimeoutError
Source§fn clone(&self) -> TimeoutError
fn clone(&self) -> TimeoutError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TimeoutError
impl Debug for TimeoutError
Source§impl Display for TimeoutError
impl Display for TimeoutError
Source§impl Error for TimeoutError
impl Error for TimeoutError
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 From<TimeoutError> for Error
impl From<TimeoutError> for Error
Source§fn from(source: TimeoutError) -> Self
fn from(source: TimeoutError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TimeoutError
impl PartialEq for TimeoutError
impl Eq for TimeoutError
impl StructuralPartialEq for TimeoutError
Auto Trait Implementations§
impl Freeze for TimeoutError
impl RefUnwindSafe for TimeoutError
impl Send for TimeoutError
impl Sync for TimeoutError
impl Unpin for TimeoutError
impl UnwindSafe for TimeoutError
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