[][src]Struct amethyst_network::Host

pub struct Host { /* fields omitted */ }

'Host' abstracts Laminar udp sockets away.

Methods

impl Host[src]

pub fn run(server_config: &ServerConfig) -> Result<Host>[src]

This will start and return an instance of the host.

The method uses the config provided when creating a host instance.

pub fn udp_receive_handle(&self) -> Receiver<SocketEvent>[src]

Get the handle to the internals of the UDP-receiving threat.

pub fn udp_send_handle(&self) -> Sender<Packet>[src]

Get the handle to the internals of the UDP-sending thread.

pub fn send_udp(&mut self, packet: Packet) -> Result<()>[src]

Schedule a UDP-packet for sending.

Auto Trait Implementations

impl Send for Host

impl Sync for Host

impl Unpin for Host

impl UnwindSafe for Host

impl RefUnwindSafe for Host

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> Any for T where
    T: Any

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 
[src]