pub enum RdpEvent {
Bitmap(BitmapEvent),
Pointer(PointerEvent),
Key(KeyboardEvent),
}
Expand description
All event handle by RDP protocol implemented by rdp-rs
Variants§
Bitmap(BitmapEvent)
Classic bitmap event
Pointer(PointerEvent)
Mouse event
Key(KeyboardEvent)
Keyboard event
Auto Trait Implementations§
impl Freeze for RdpEvent
impl RefUnwindSafe for RdpEvent
impl Send for RdpEvent
impl Sync for RdpEvent
impl Unpin for RdpEvent
impl UnwindSafe for RdpEvent
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