pub enum ChannelEvent {
OnChannelStreamingData {
handle: Hid,
channel_sent: ChannelSent,
},
_UnknownEvent {
ordinal: u64,
},
}
Variants§
Implementations§
Source§impl ChannelEvent
impl ChannelEvent
pub fn into_on_channel_streaming_data(self) -> Option<(Hid, ChannelSent)>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChannelEvent
impl RefUnwindSafe for ChannelEvent
impl Send for ChannelEvent
impl Sync for ChannelEvent
impl Unpin for ChannelEvent
impl UnwindSafe for ChannelEvent
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