pub struct ExceptionBreakpointFilter {
pub filter: String,
pub label: String,
pub default: Option<bool>,
}Expand description
Exception breakpoint filter descriptor (reported in capabilities)
Fields§
§filter: StringUnique filter identifier
label: StringHuman-readable label for the filter
default: Option<bool>Whether this filter is enabled by default
Trait Implementations§
Source§impl Clone for ExceptionBreakpointFilter
impl Clone for ExceptionBreakpointFilter
Source§fn clone(&self) -> ExceptionBreakpointFilter
fn clone(&self) -> ExceptionBreakpointFilter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExceptionBreakpointFilter
impl Debug for ExceptionBreakpointFilter
Source§impl<'de> Deserialize<'de> for ExceptionBreakpointFilter
impl<'de> Deserialize<'de> for ExceptionBreakpointFilter
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
Auto Trait Implementations§
impl Freeze for ExceptionBreakpointFilter
impl RefUnwindSafe for ExceptionBreakpointFilter
impl Send for ExceptionBreakpointFilter
impl Sync for ExceptionBreakpointFilter
impl Unpin for ExceptionBreakpointFilter
impl UnsafeUnpin for ExceptionBreakpointFilter
impl UnwindSafe for ExceptionBreakpointFilter
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