pub enum ClrExceptionHandlerType {
Catch,
Filter,
Finally,
Fault,
}Expand description
CLR exception handler type indicating the kind of exception handling.
Variants§
Catch
Catch clause that handles a specific exception type.
Filter
Filter clause that uses a predicate to determine if it should handle the exception.
Finally
Finally clause that always executes regardless of exception.
Fault
Fault clause that executes only when an exception occurs.
Trait Implementations§
Source§impl Clone for ClrExceptionHandlerType
impl Clone for ClrExceptionHandlerType
Source§fn clone(&self) -> ClrExceptionHandlerType
fn clone(&self) -> ClrExceptionHandlerType
Returns a duplicate of the value. Read more
1.0.0 · 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 ClrExceptionHandlerType
impl Debug for ClrExceptionHandlerType
Source§impl Hash for ClrExceptionHandlerType
impl Hash for ClrExceptionHandlerType
Source§impl PartialEq for ClrExceptionHandlerType
impl PartialEq for ClrExceptionHandlerType
impl Copy for ClrExceptionHandlerType
impl Eq for ClrExceptionHandlerType
impl StructuralPartialEq for ClrExceptionHandlerType
Auto Trait Implementations§
impl Freeze for ClrExceptionHandlerType
impl RefUnwindSafe for ClrExceptionHandlerType
impl Send for ClrExceptionHandlerType
impl Sync for ClrExceptionHandlerType
impl Unpin for ClrExceptionHandlerType
impl UnsafeUnpin for ClrExceptionHandlerType
impl UnwindSafe for ClrExceptionHandlerType
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