[−][src]Enum wishbone_tool::gdb::GdbServerError
Variants
IoError(Error)Rust standard IO error
The network connection has closed
NumberParseError(String, ParseIntError)We were unable to parse an integer
CpuError(RiscvCpuError)Something happened with the CPU
BridgeError(BridgeError)The bridge failed somehow
Something strange was received
UnknownBreakpointType(String)Client tried to give us a breakpoint we didn't recognize
Trait Implementations
impl Debug for GdbServerError[src]
impl From<BridgeError> for GdbServerError[src]
fn from(e: BridgeError) -> Self[src]
impl From<Error> for GdbServerError[src]
impl From<GdbServerError> for ServerError[src]
fn from(e: GdbServerError) -> ServerError[src]
impl From<RiscvCpuError> for GdbServerError[src]
fn from(e: RiscvCpuError) -> Self[src]
Auto Trait Implementations
impl !RefUnwindSafe for GdbServerError
impl Send for GdbServerError
impl Sync for GdbServerError
impl Unpin for GdbServerError
impl !UnwindSafe for GdbServerError
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,