pub trait FlyoutExt: Into<View> + Sized {
// Provided methods
fn flyout(self, value: impl Into<String>) -> View { ... }
fn flyout_with(self, flyout: Flyout) -> View { ... }
}Expand description
Adds a flyout to a view.
Provided Methods§
fn flyout(self, value: impl Into<String>) -> View
fn flyout_with(self, flyout: Flyout) -> View
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".