pub enum InputMethodEvent {
CreateHandler {
handler: InputHandler,
field: Field,
},
RequestCaptureHandler {
id: u64,
},
ReleaseHandler {
id: u64,
},
DestroyHandler {
id: u64,
},
}Variants§
Trait Implementations§
Source§impl Debug for InputMethodEvent
impl Debug for InputMethodEvent
Source§impl EventParser for InputMethodEvent
impl EventParser for InputMethodEvent
const ASPECT_ID: u64 = 14_883_688_361_483_968_991u64
fn parse_signal( _client: &Arc<ClientHandle>, signal_id: u64, _data: &[u8], _fds: Vec<OwnedFd>, ) -> Result<Self, ScenegraphError>
fn parse_method( _client: &Arc<ClientHandle>, method_id: u64, _data: &[u8], _fds: Vec<OwnedFd>, response: MethodResponse, ) -> Result<Self, ScenegraphError>
Auto Trait Implementations§
impl Freeze for InputMethodEvent
impl !RefUnwindSafe for InputMethodEvent
impl Send for InputMethodEvent
impl Sync for InputMethodEvent
impl Unpin for InputMethodEvent
impl !UnwindSafe for InputMethodEvent
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