Struct protosocket_server::ConnectionServer
source · pub struct ConnectionServer<Connector: ServerConnector> { /* private fields */ }
Expand description
Once you’ve configured your connection server the way you want it, execute it on your asynchronous runtime.
Trait Implementations§
source§impl<Connector: ServerConnector> Future for ConnectionServer<Connector>
impl<Connector: ServerConnector> Future for ConnectionServer<Connector>
Auto Trait Implementations§
impl<Connector> Freeze for ConnectionServer<Connector>where
Connector: Freeze,
impl<Connector> !RefUnwindSafe for ConnectionServer<Connector>
impl<Connector> Send for ConnectionServer<Connector>where
Connector: Send,
<<Connector as ServerConnector>::Bindings as ConnectionBindings>::Deserializer: Send,
<<Connector as ServerConnector>::Bindings as ConnectionBindings>::Serializer: Send,
impl<Connector> Sync for ConnectionServer<Connector>where
Connector: Sync,
<<Connector as ServerConnector>::Bindings as ConnectionBindings>::Deserializer: Sync,
<<Connector as ServerConnector>::Bindings as ConnectionBindings>::Serializer: Sync,
impl<Connector> Unpin for ConnectionServer<Connector>
impl<Connector> !UnwindSafe for ConnectionServer<Connector>
Blanket Implementations§
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
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more