jsonrpc_pubsub::typed

Struct Subscriber

Source
pub struct Subscriber<T, E = Error> { /* private fields */ }
Expand description

New PUB-SUB subscriber.

Implementations§

Source§

impl<T, E> Subscriber<T, E>

Source

pub fn new(subscriber: Subscriber) -> Self

Wrap non-typed subscriber.

Source

pub fn new_test<M: Into<String>>( method: M, ) -> (Self, Receiver<Result<SubscriptionId, Error>>, UnboundedReceiver<String>)

Create new subscriber for tests.

Source

pub fn reject(self, error: Error) -> Result<(), ()>

Reject subscription with given error.

Source

pub async fn reject_async(self, error: Error) -> Result<(), ()>

Reject subscription with given error.

The returned future will resolve when the response is sent to the client.

Source

pub fn assign_id(self, id: SubscriptionId) -> Result<Sink<T, E>, ()>

Assign id to this subscriber. This method consumes Subscriber and returns Sink if the connection is still open or error otherwise.

Source

pub async fn assign_id_async(self, id: SubscriptionId) -> Result<Sink<T, E>, ()>

Assign id to this subscriber. This method consumes Subscriber and resolves to Sink if the connection is still open and the id has been sent or to error otherwise.

Trait Implementations§

Source§

impl<T: Debug, E: Debug> Debug for Subscriber<T, E>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T, E> Freeze for Subscriber<T, E>

§

impl<T, E = Error> !RefUnwindSafe for Subscriber<T, E>

§

impl<T, E> Send for Subscriber<T, E>
where T: Send, E: Send,

§

impl<T, E> Sync for Subscriber<T, E>
where T: Sync, E: Sync,

§

impl<T, E> Unpin for Subscriber<T, E>
where T: Unpin, E: Unpin,

§

impl<T, E = Error> !UnwindSafe for Subscriber<T, E>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V