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§

Object Safety§

This trait is not object safe.

Implementors§