pub struct JvmExceptionHandler {
pub start_label: String,
pub end_label: String,
pub handler_label: String,
pub catch_type: Option<String>,
}Expand description
JVM exception handler
Fields§
§start_label: StringStart label
end_label: StringEnd label
handler_label: StringHandler label
catch_type: Option<String>Catch type (class name)
Trait Implementations§
Source§impl Clone for JvmExceptionHandler
impl Clone for JvmExceptionHandler
Source§fn clone(&self) -> JvmExceptionHandler
fn clone(&self) -> JvmExceptionHandler
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 moreAuto Trait Implementations§
impl Freeze for JvmExceptionHandler
impl RefUnwindSafe for JvmExceptionHandler
impl Send for JvmExceptionHandler
impl Sync for JvmExceptionHandler
impl Unpin for JvmExceptionHandler
impl UnsafeUnpin for JvmExceptionHandler
impl UnwindSafe for JvmExceptionHandler
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