[][src]Struct packets::client::Client

pub struct Client {
    pub stream: TcpStream,
    // some fields omitted
}

Fields

stream: TcpStream

Implementations

impl Client[src]

pub fn block_until_receive(
    &mut self,
    timeout: Duration
) -> Result<PacketReceiveStatus>
[src]

pub fn connect<B: ToSocketAddrs>(
    addr: B,
    config: &ClientConfig
) -> Result<Client>
[src]

pub fn is_connected(&self) -> bool[src]

pub fn receive<A: Serialize + DeserializeOwned>(&mut self) -> Result<Option<A>>[src]

pub fn receive_blocking<A: Serialize + DeserializeOwned>(
    &mut self,
    timeout: Duration
) -> Result<Option<A>>
[src]

Block the thread until a packet has been received from the thread.

pub fn send<A: Serialize + DeserializeOwned>(
    &mut self,
    packet: &A
) -> Result<()>
[src]

pub fn shutdown(self) -> Result<()>[src]

Note: shutting down the Client is not immediate.

Trait Implementations

impl Debug for Client[src]

Auto Trait Implementations

impl RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl UnwindSafe for Client

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, 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.