Struct Subscriber

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

New PUB-SUB subcriber.

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>>, Receiver<String>)

Create new subscriber for tests.

Source

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

Reject subscription with given error.

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.

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<T> Erased for T