pub enum EmulationCreationError {
Windows(WindowsEmulationCreationError),
NoAvailableBackend,
}Variants§
Trait Implementations§
Source§impl Debug for EmulationCreationError
impl Debug for EmulationCreationError
Source§impl Display for EmulationCreationError
impl Display for EmulationCreationError
Source§impl Error for EmulationCreationError
impl Error for EmulationCreationError
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.
Auto Trait Implementations§
impl Freeze for EmulationCreationError
impl RefUnwindSafe for EmulationCreationError
impl Send for EmulationCreationError
impl Sync for EmulationCreationError
impl Unpin for EmulationCreationError
impl UnwindSafe for EmulationCreationError
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