[][src]Struct kayrx::jrpc::raw::client::RawClientPendingSubscription

pub struct RawClientPendingSubscription<'a, R> { /* fields omitted */ }

Access to a subscription within a RawClient.

Methods

impl<'a, R> RawClientPendingSubscription<'a, R> where
    R: TransportClient
[src]

pub async fn wait(
    self
) -> Result<RawClientActiveSubscription<'a, R>, RawClientError<R::Error>>
[src]

Wait until the server sends back an answer to this subscription request.

Note: While this function is waiting, all the other responses and pubsub events returned by the server will be buffered up to a certain limit. Once this limit is reached, server notifications will be discarded. If you want to be sure to catch all notifications, use next_event instead.

Trait Implementations

impl<'a, R: Debug> Debug for RawClientPendingSubscription<'a, R>[src]

Auto Trait Implementations

impl<'a, R> RefUnwindSafe for RawClientPendingSubscription<'a, R> where
    R: RefUnwindSafe

impl<'a, R> Send for RawClientPendingSubscription<'a, R> where
    R: Send

impl<'a, R> Sync for RawClientPendingSubscription<'a, R> where
    R: Sync

impl<'a, R> Unpin for RawClientPendingSubscription<'a, R>

impl<'a, R> !UnwindSafe for RawClientPendingSubscription<'a, R>

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,