pub enum IncomingChannelMessage {
Item(SelfRef<ChannelItem<'static>>),
Close(SelfRef<ChannelClose<'static>>),
Reset(SelfRef<ChannelReset<'static>>),
}Expand description
Message delivered to an Rx by the driver.
Variants§
Item(SelfRef<ChannelItem<'static>>)
Close(SelfRef<ChannelClose<'static>>)
Reset(SelfRef<ChannelReset<'static>>)
Auto Trait Implementations§
impl Freeze for IncomingChannelMessage
impl !RefUnwindSafe for IncomingChannelMessage
impl Send for IncomingChannelMessage
impl !Sync for IncomingChannelMessage
impl Unpin for IncomingChannelMessage
impl UnsafeUnpin for IncomingChannelMessage
impl !UnwindSafe for IncomingChannelMessage
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