Trait RelayExt

Source
pub trait RelayExt: Relay {
    // Provided method
    fn run(&mut self) -> Run<'_, Self>  { ... }
}

Provided Methods§

Source

fn run(&mut self) -> Run<'_, Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<R: Relay + ?Sized> RelayExt for R