Trait rd_interface::IntoDyn[][src]

pub trait IntoDyn<DynType> {
    fn into_dyn(self) -> DynType
    where
        Self: Sized + 'static
; }

Required methods

fn into_dyn(self) -> DynType where
    Self: Sized + 'static, 
[src]

Loading content...

Implementors

impl<T: INet> IntoDyn<Arc<dyn INet + 'static>> for T[src]

fn into_dyn(self) -> Net where
    Self: Sized + 'static, 
[src]

impl<T: IServer> IntoDyn<Box<dyn IServer + 'static, Global>> for T[src]

fn into_dyn(self) -> Server where
    Self: Sized + 'static, 
[src]

impl<T: ITcpListener> IntoDyn<Box<dyn ITcpListener + 'static, Global>> for T[src]

fn into_dyn(self) -> TcpListener where
    Self: Sized + 'static, 
[src]

impl<T: ITcpStream> IntoDyn<Box<dyn ITcpStream + 'static, Global>> for T[src]

fn into_dyn(self) -> TcpStream where
    Self: Sized + 'static, 
[src]

impl<T: IUdpChannel> IntoDyn<Arc<dyn IUdpChannel + 'static>> for T[src]

fn into_dyn(self) -> UdpChannel where
    Self: Sized + 'static, 
[src]

impl<T: IUdpSocket> IntoDyn<Arc<dyn IUdpSocket + 'static>> for T[src]

fn into_dyn(self) -> UdpSocket where
    Self: Sized + 'static, 
[src]

Loading content...