Struct tiny_rpc::rpc::RpcClient [−][src]
Implementations
impl<R: Rpc, I: RpcFrame<R::Response>, O: RpcFrame<R::Request>> RpcClient<'static, R, I, O>[src]
pub fn new<T: Stream<Item = Result<I>> + Unpin + Send + 'static, U: Sink<O, Error = Error> + Unpin + Send + 'static>(
recv: T,
send: U
) -> Self[src]
recv: T,
send: U
) -> Self
impl<'a, R: Rpc, I: RpcFrame<R::Response>, O: RpcFrame<R::Request>> RpcClient<'a, R, I, O>[src]
pub fn new_with_driver<T, U>(
recv: T,
send: U
) -> (impl Future<Output = ()> + 'a, Self) where
T: Stream<Item = Result<I>> + Unpin + 'a,
U: Sink<O, Error = Error> + Unpin + 'a, [src]
recv: T,
send: U
) -> (impl Future<Output = ()> + 'a, Self) where
T: Stream<Item = Result<I>> + Unpin + 'a,
U: Sink<O, Error = Error> + Unpin + 'a,
pub async fn make_request(&mut self, req: O) -> Result<I>[src]
Trait Implementations
impl<'a, R: Rpc, I: RpcFrame<R::Response>, O: RpcFrame<R::Request>> Clone for RpcClient<'a, R, I, O>[src]
fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<'a, R: Rpc, I: RpcFrame<R::Response>, O: RpcFrame<R::Request>> Debug for RpcClient<'a, R, I, O>[src]
Auto Trait Implementations
impl<'a, R, I, O> !RefUnwindSafe for RpcClient<'a, R, I, O>
impl<'a, R, I, O> Send for RpcClient<'a, R, I, O> where
R: Sync,
R: Sync,
impl<'a, R, I, O> Sync for RpcClient<'a, R, I, O> where
R: Sync,
R: Sync,
impl<'a, R, I, O> Unpin for RpcClient<'a, R, I, O>
impl<'a, R, I, O> !UnwindSafe for RpcClient<'a, R, I, O>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut Tⓘ[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;[src]
Notable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;pub fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;[src]
Notable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,