Struct ssb_client::Client [] [src]

pub struct Client<R: AsyncRead, W>(_);

An ssb client. This struct is used to send rpcs to the server.

Methods

impl<R: AsyncRead, W: AsyncWrite> Client<R, W>
[src]

[src]

Close the connection to the server. If there are still active rpcs, it is not closed immediately. It will get closed once the last of them is done.

[src]

Give access to the underlying muxrpc RpcOut, to send rpcs which are not directly supported by this module.

[src]

Query information about the current user.

[src]

Get a Message of type T by its MessageId..

Trait Implementations

Auto Trait Implementations

impl<R, W> !Send for Client<R, W>

impl<R, W> !Sync for Client<R, W>