pub enum InputEmulationError {
Create(EmulationCreationError),
Emulate(EmulationError),
}Variants§
Create(EmulationCreationError)
Emulate(EmulationError)
Trait Implementations§
Source§impl Debug for InputEmulationError
impl Debug for InputEmulationError
Source§impl Display for InputEmulationError
impl Display for InputEmulationError
Source§impl Error for InputEmulationError
impl Error for InputEmulationError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<EmulationCreationError> for InputEmulationError
impl From<EmulationCreationError> for InputEmulationError
Source§fn from(source: EmulationCreationError) -> Self
fn from(source: EmulationCreationError) -> Self
Converts to this type from the input type.
Source§impl From<EmulationError> for InputEmulationError
impl From<EmulationError> for InputEmulationError
Source§fn from(source: EmulationError) -> Self
fn from(source: EmulationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InputEmulationError
impl !RefUnwindSafe for InputEmulationError
impl Send for InputEmulationError
impl Sync for InputEmulationError
impl Unpin for InputEmulationError
impl !UnwindSafe for InputEmulationError
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