pub enum InputMethod {
Active(InputMethodDetails),
InactiveSince(Instant),
}
Variants§
Active(InputMethodDetails)
InactiveSince(Instant)
Trait Implementations§
Source§impl Clone for InputMethod
impl Clone for InputMethod
Source§fn clone(&self) -> InputMethod
fn clone(&self) -> InputMethod
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InputMethod
impl Debug for InputMethod
Source§impl From<InputMethod> for Event
impl From<InputMethod> for Event
Source§fn from(im: InputMethod) -> Self
fn from(im: InputMethod) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InputMethod
impl RefUnwindSafe for InputMethod
impl Send for InputMethod
impl Sync for InputMethod
impl Unpin for InputMethod
impl UnwindSafe for InputMethod
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