pub trait ExceptionExt:
IsA<Exception>
+ Sealed
+ 'static {
// Provided methods
fn backtrace_string(&self) -> Option<GString> { ... }
fn column_number(&self) -> u32 { ... }
fn line_number(&self) -> u32 { ... }
fn message(&self) -> Option<GString> { ... }
fn name(&self) -> Option<GString> { ... }
fn source_uri(&self) -> Option<GString> { ... }
fn report(&self) -> Option<GString> { ... }
fn to_str(&self) -> GString { ... }
}
Provided Methods§
fn backtrace_string(&self) -> Option<GString>
fn column_number(&self) -> u32
fn line_number(&self) -> u32
fn message(&self) -> Option<GString>
fn name(&self) -> Option<GString>
fn source_uri(&self) -> Option<GString>
fn report(&self) -> Option<GString>
fn to_str(&self) -> GString
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.