[][src]Enum kayrx::jrpc::raw::client::RawClientSubscription

pub enum RawClientSubscription<'a, R> {
    Pending(RawClientPendingSubscription<'a, R>),
    Active(RawClientActiveSubscription<'a, R>),
}

Access to a subscription within a RawClient.

Variants

The server hasn't accepted our subscription request yet.

The server has accepted our subscription request. We might receive notifications for it.

Methods

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

pub fn is_active(&self) -> bool[src]

Returns true if the subscription is active. That is, if the server has accepted our subscription request and might generate events.

pub fn into_active(self) -> Option<RawClientActiveSubscription<'a, R>>[src]

If this subscription is active, returns the RawClientActiveSubscription.

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<'a, R> !UnwindSafe for RawClientSubscription<'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>,