pub trait SetNodeShowHideUncheckedExt {
// Required methods
fn show(&mut self) -> &mut Self;
fn hide(&mut self) -> &mut Self;
fn render(&mut self, render: bool) -> &mut Self;
}Required Methods§
fn show(&mut self) -> &mut Self
fn hide(&mut self) -> &mut Self
fn render(&mut self, render: bool) -> &mut Self
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.