Skip to main content

FlyoutExt

Trait FlyoutExt 

Source
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§

Source

fn flyout(self, value: impl Into<String>) -> View

Source

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".

Implementors§

Source§

impl<T> FlyoutExt for T
where T: Into<View>,