Skip to main content

IntoService

Trait IntoService 

Source
pub trait IntoService {
    // Required method
    fn into(self) -> impl CommunicationService + 'static;
}

Required Methods§

Source

fn into(self) -> impl CommunicationService + 'static

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<T: CommunicationService + 'static> IntoService for T