pub struct SubscriptionChannel {
pub sender: UnboundedSender<Box<dyn Any + Send>>,
pub subscription_type: SubscriptionType,
}Expand description
Channel information for a subscription
Fields§
§sender: UnboundedSender<Box<dyn Any + Send>>Channel sender
subscription_type: SubscriptionTypeType of subscription
Auto Trait Implementations§
impl Freeze for SubscriptionChannel
impl RefUnwindSafe for SubscriptionChannel
impl Send for SubscriptionChannel
impl Sync for SubscriptionChannel
impl Unpin for SubscriptionChannel
impl UnwindSafe for SubscriptionChannel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more