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; }
Expand description

Required Methods

Get the value of property::DebugController::debug-enabled.

Returns

true if debug output should be exposed, false otherwise

Set the value of property::DebugController::debug-enabled.

debug_enabled

true if debug output should be exposed, false otherwise

Available on crate feature v2_72 only.

Implementors