musli-web 0.3.1

Types for integrating Müsli with websocket frameworks.
Documentation
use implicit_clone06::ImplicitClone;

use crate::web::{Channel, Handle, WebImpl};

impl<H> ImplicitClone for Handle<H>
where
    H: WebImpl,
{
    #[inline]
    fn implicit_clone(&self) -> Self {
        self.clone()
    }
}

impl<H> ImplicitClone for Channel<H>
where
    H: WebImpl,
{
    #[inline]
    fn implicit_clone(&self) -> Self {
        self.clone()
    }
}