pub trait DebugControllerExt: 'static {
    fn is_debug_enabled(&self) -> bool;
fn set_debug_enabled(&self, debug_enabled: bool);
fn connect_debug_enabled_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

This is supported on crate feature v2_72 only.

Implementors