Searched refs:GdbStubError (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/gdbstub/src/gdbstub_impl/ |
D | error.rs | 9 pub enum GdbStubError<T, C> { enum 39 impl<T, C> From<ResponseWriterError<C>> for GdbStubError<T, C> { implementation 41 GdbStubError::ConnectionWrite(e) in from() 45 impl<A, T, C> From<CapacityError<A>> for GdbStubError<T, C> { implementation 47 GdbStubError::PacketBufferOverlow in from() 51 impl<T, C> Display for GdbStubError<T, C> implementation 57 use self::GdbStubError::*; in fmt() 76 impl<T, C> std::error::Error for GdbStubError<T, C> implementation
|
D | target_result_ext.rs | 2 use crate::GdbStubError; 9 fn handle_error(self) -> Result<V, GdbStubError<T, C>>; in handle_error() 13 fn handle_error(self) -> Result<V, GdbStubError<T, C>> { in handle_error() 16 Err(TargetError::Fatal(e)) => return Err(GdbStubError::TargetError(e)), in handle_error() 25 Err(GdbStubError::NonFatalError(code)) in handle_error()
|
D | mod.rs | 29 pub use error::GdbStubError; 33 use GdbStubError as Error;
|