Struct tiny_rpc::rpc::RpcClient[][src]

pub struct RpcClient<'a, I: RpcFrame, O: RpcFrame>(_, _);

Implementations

impl<I: RpcFrame, O: RpcFrame> RpcClient<'static, I, O>[src]

pub fn new<T: Stream<Item = I> + Unpin + Send + 'static, U: Sink<O, Error = Error> + Unpin + Send + 'static>(
    recv: T,
    send: U
) -> Self
[src]

impl<'a, I: RpcFrame, O: RpcFrame> RpcClient<'a, I, O>[src]

pub fn new_with_driver<T, U>(
    recv: T,
    send: U
) -> (impl Future<Output = ()> + 'a, Self) where
    T: Stream<Item = I> + Unpin + 'a,
    U: Sink<O, Error = Error> + Unpin + 'a, 
[src]

pub async fn make_request(&mut self, req: O) -> Result<I, Error>[src]

Trait Implementations

impl<'a, I: RpcFrame, O: RpcFrame> Clone for RpcClient<'a, I, O>[src]

impl<'a, I: Debug + RpcFrame, O: Debug + RpcFrame> Debug for RpcClient<'a, I, O>[src]

Auto Trait Implementations

impl<'a, I, O> !RefUnwindSafe for RpcClient<'a, I, O>[src]

impl<'a, I, O> Send for RpcClient<'a, I, O>[src]

impl<'a, I, O> Sync for RpcClient<'a, I, O>[src]

impl<'a, I, O> Unpin for RpcClient<'a, I, O>[src]

impl<'a, I, O> !UnwindSafe for RpcClient<'a, I, O>[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.