pub trait NotebookExtHelpers: NotebookExt {
// Provided methods
fn set_child_action_widget_start<P: IsA<Widget>>(
&self,
_child: &P,
_val: bool,
) { ... }
fn get_child_action_widget_start<P: IsA<Widget>>(&self, _child: &P) -> bool { ... }
fn set_child_action_widget_end<P: IsA<Widget>>(
&self,
_child: &P,
_val: bool,
) { ... }
fn get_child_action_widget_end<P: IsA<Widget>>(&self, _child: &P) -> bool { ... }
}
Expand description
Helper trait for Notebook
.
Provided Methods§
fn set_child_action_widget_start<P: IsA<Widget>>(&self, _child: &P, _val: bool)
fn get_child_action_widget_start<P: IsA<Widget>>(&self, _child: &P) -> bool
fn set_child_action_widget_end<P: IsA<Widget>>(&self, _child: &P, _val: bool)
fn get_child_action_widget_end<P: IsA<Widget>>(&self, _child: &P) -> bool
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.