pub struct JvmExceptionHandler {
pub start_label: String,
pub end_label: String,
pub handler_label: String,
pub catch_type: Option<String>,
}Expand description
JVM 异常处理表项(高层表示)
Fields§
§start_label: String起始标签(包含)
end_label: String结束标签(不包含)
handler_label: String处理器标签
catch_type: Option<String>异常类型类名(None 表示 finally)
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 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