Skip to main content

OverlayExt

Trait OverlayExt 

Source
pub trait OverlayExt {
    // Required method
    fn overlay(self) -> Overlay;
}
Expand description

A trait that adds an overlay method to any type that implements IntoView.

Required Methods§

Source

fn overlay(self) -> Overlay

Wrap the view in an overlay.

Implementors§

Source§

impl<T> OverlayExt for T
where T: IntoView + 'static,