pub struct ExceptionFilterOption {
pub filter_id: String,
pub condition: Option<String>,
}Expand description
Exception filter option for fine-grained exception breakpoints
Fields§
§filter_id: StringID of the exception filter
condition: Option<String>Condition expression for the filter
Trait Implementations§
Source§impl Clone for ExceptionFilterOption
impl Clone for ExceptionFilterOption
Source§fn clone(&self) -> ExceptionFilterOption
fn clone(&self) -> ExceptionFilterOption
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 ExceptionFilterOption
impl Debug for ExceptionFilterOption
Source§impl<'de> Deserialize<'de> for ExceptionFilterOption
impl<'de> Deserialize<'de> for ExceptionFilterOption
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 ExceptionFilterOption
impl RefUnwindSafe for ExceptionFilterOption
impl Send for ExceptionFilterOption
impl Sync for ExceptionFilterOption
impl Unpin for ExceptionFilterOption
impl UnsafeUnpin for ExceptionFilterOption
impl UnwindSafe for ExceptionFilterOption
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