[][src]Struct namaste::client::Client

pub struct Client { /* fields omitted */ }

Client

Use ::book() to book a seat. When done with it, you should call ::check_out().

Methods

impl Client[src]

pub fn book(
    id: Id,
    handshake_id: Id,
    server_port: Option<u16>,
    rw_timeout: Duration
) -> Result<Option<Self>>
[src]

Books a seat

Notes

  • An error is returned if ID and handshake ID are the same.
  • ID must be a constant. But you should generate new handshake ID each time you call this function.
  • If you provide None as server port, DEFAULT_PORT will be used.
  • An error is returned if read/write timeout is zero.
  • A TCP server will be started to communicate with Namaste server. Server port will be granted by system.

pub fn check_out(&self) -> Result<bool>[src]

Auto Trait Implementations

impl Send for Client

impl Unpin for Client

impl Sync for Client

impl UnwindSafe for Client

impl RefUnwindSafe for Client

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]