[][src]Struct over_there_core::ListeningServer

pub struct ListeningServer { /* fields omitted */ }

Represents a server after listening has begun

Methods

impl ListeningServer[src]

pub fn addr_event_manager(&self) -> &AddrEventManager[src]

Represents the manager of inbound and outbound msgs

pub fn addr(&self) -> SocketAddr[src]

Represents the bound address of the server

pub fn shutdown(&self)[src]

Flags the server's internal state as no longer running, closing down all running tasks

pub async fn wait(self) -> Result<(), JoinError>[src]

Waits for the server to complete

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,