Struct srve::Client[][src]

pub struct Client<M> { /* fields omitted */ }

Represents a connection to a server.

Implementations

impl<M> Client<M> where
    M: Serialize + DeserializeOwned + Debug
[src]

pub fn connect(addr: &str) -> Result<Self, Box<dyn Error>>[src]

Create a new client by connecting to a server by its address.

pub fn send(&mut self, msg: M) -> Result<(), Box<dyn Error>>[src]

Send a message to the server.

pub fn recv(&mut self) -> Result<M, Box<dyn Error>>[src]

Receive a message from the server (blocks).

pub fn close(self) -> Result<(), Box<dyn Error>>[src]

Closes the connection to the server.

Auto Trait Implementations

impl<M> RefUnwindSafe for Client<M> where
    M: RefUnwindSafe

impl<M> Send for Client<M> where
    M: Send

impl<M> Sync for Client<M> where
    M: Sync

impl<M> Unpin for Client<M> where
    M: Unpin

impl<M> UnwindSafe for Client<M> where
    M: UnwindSafe

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.