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