pub trait ExceptionExt: 'static {
// Required 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;
}Required 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 dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".