BreakpointBinExt

Trait BreakpointBinExt 

Source
pub trait BreakpointBinExt: IsA<BreakpointBin> + 'static {
    // Provided methods
    fn add_breakpoint(&self, breakpoint: Breakpoint) { ... }
    fn child(&self) -> Option<Widget> { ... }
    fn current_breakpoint(&self) -> Option<Breakpoint> { ... }
    fn remove_breakpoint(&self, breakpoint: &Breakpoint) { ... }
    fn set_child(&self, child: Option<&impl IsA<Widget>>) { ... }
    fn connect_child_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_current_breakpoint_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}

Provided Methods§

Source

fn add_breakpoint(&self, breakpoint: Breakpoint)

Source

fn child(&self) -> Option<Widget>

Source

fn current_breakpoint(&self) -> Option<Breakpoint>

Source

fn remove_breakpoint(&self, breakpoint: &Breakpoint)

Source

fn set_child(&self, child: Option<&impl IsA<Widget>>)

Source

fn connect_child_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Source

fn connect_current_breakpoint_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§