pub fn exception_safe_connect<Sender, Signal, Receiver, Slot, R>(
    sender: Sender,
    signal: Signal,
    receiver: Receiver,
    method: Slot,
    ty: Option<u32>
) -> R
Expand description

| A drop-in replacement of QObject::connect | function (see: https://doc.qt.io/qt-5/qobject.html#connect-3), | that guaranties that all exceptions | are handled within the slot. | | ———– | @note | | This function is incompatible with | Qt private signals. |