Skip to main content

AsInteractive

Trait AsInteractive 

Source
pub trait AsInteractive {
    // Required method
    fn try_as_interactive(&self) -> Result<'_, &dyn Interactive>;
}

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<T> AsInteractive for T

Source§

impl<T> AsInteractive for T
where T: Interactive,