Skip to main content

AislingExt

Trait AislingExt 

Source
pub trait AislingExt: Widget + Sized {
    // Provided method
    fn aisling(self) -> Aisling<Self> { ... }
}
Expand description

Extension trait for calling .aisling() on any Scrin widget.

Provided Methods§

Source

fn aisling(self) -> Aisling<Self>

Decorates this widget with the default Aisling effect.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<W: Widget> AislingExt for W