pub trait ExceptionExt: 'static {
    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§

Implementors§