pub enum ToProxyServer {
Connect(Recipient<ToSession>),
DisConnect(usize),
OnlineCounter(usize),
Cli(usize, Cli),
HttpReq(Box<WsHttpReq>),
}Variants§
Connect(Recipient<ToSession>)
DisConnect(usize)
OnlineCounter(usize)
Cli(usize, Cli)
HttpReq(Box<WsHttpReq>)
Trait Implementations§
Source§impl Debug for ToProxyServer
impl Debug for ToProxyServer
Source§impl Handler<ToProxyServer> for ProxyServer
impl Handler<ToProxyServer> for ProxyServer
Source§type Result = MessageResult<ToProxyServer>
type Result = MessageResult<ToProxyServer>
The type of value that this handler will return. Read more
Source§impl Message for ToProxyServer
impl Message for ToProxyServer
Source§type Result = ProxyServerReply
type Result = ProxyServerReply
The type of value that this message will resolved with if it is
successful.
Auto Trait Implementations§
impl Freeze for ToProxyServer
impl !RefUnwindSafe for ToProxyServer
impl Send for ToProxyServer
impl Sync for ToProxyServer
impl Unpin for ToProxyServer
impl !UnwindSafe for ToProxyServer
Blanket Implementations§
Source§impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
Source§impl<'a, T> AsTaggedImplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedImplicit<'a> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more