pub enum WindMouseError {
InvalidWaitTime {
min_wait: f32,
max_wait: f32,
},
NegativeParameter(&'static str),
}Variants§
Trait Implementations§
Source§impl Debug for WindMouseError
impl Debug for WindMouseError
Source§impl Display for WindMouseError
impl Display for WindMouseError
Source§impl Error for WindMouseError
impl Error for WindMouseError
1.30.0 · 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()
Auto Trait Implementations§
impl Freeze for WindMouseError
impl RefUnwindSafe for WindMouseError
impl Send for WindMouseError
impl Sync for WindMouseError
impl Unpin for WindMouseError
impl UnsafeUnpin for WindMouseError
impl UnwindSafe for WindMouseError
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