pub struct ExceptionInfoResponseBody {
pub exception_id: String,
pub description: Option<String>,
pub break_mode: ExceptionBreakMode,
pub details: Option<ExceptionDetails>,
/* private fields */
}
Fields§
§exception_id: String
ID of the exception that was thrown.
description: Option<String>
Descriptive text for the exception provided by the debug adapter.
break_mode: ExceptionBreakMode
Mode that caused the exception notification to be raised.
details: Option<ExceptionDetails>
Detailed information about the exception.
Implementations§
Source§impl ExceptionInfoResponseBody
impl ExceptionInfoResponseBody
Sourcepub fn builder() -> ExceptionInfoResponseBodyBuilder<((), (), (), ())>
pub fn builder() -> ExceptionInfoResponseBodyBuilder<((), (), (), ())>
Create a builder for building ExceptionInfoResponseBody
.
On the builder, call .exception_id(...)
, .description(...)
(optional), .break_mode(...)
, .details(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of ExceptionInfoResponseBody
.
Trait Implementations§
Source§impl Clone for ExceptionInfoResponseBody
impl Clone for ExceptionInfoResponseBody
Source§fn clone(&self) -> ExceptionInfoResponseBody
fn clone(&self) -> ExceptionInfoResponseBody
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ExceptionInfoResponseBody
impl Debug for ExceptionInfoResponseBody
Source§impl<'de> Deserialize<'de> for ExceptionInfoResponseBody
impl<'de> Deserialize<'de> for ExceptionInfoResponseBody
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ExceptionInfoResponseBody> for SuccessResponse
impl From<ExceptionInfoResponseBody> for SuccessResponse
Source§fn from(args: ExceptionInfoResponseBody) -> Self
fn from(args: ExceptionInfoResponseBody) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ExceptionInfoResponseBody
impl PartialEq for ExceptionInfoResponseBody
Source§fn eq(&self, other: &ExceptionInfoResponseBody) -> bool
fn eq(&self, other: &ExceptionInfoResponseBody) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for ExceptionInfoResponseBody
impl StructuralPartialEq for ExceptionInfoResponseBody
Auto Trait Implementations§
impl Freeze for ExceptionInfoResponseBody
impl RefUnwindSafe for ExceptionInfoResponseBody
impl Send for ExceptionInfoResponseBody
impl Sync for ExceptionInfoResponseBody
impl Unpin for ExceptionInfoResponseBody
impl UnwindSafe for ExceptionInfoResponseBody
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.