pub enum StickInputError {
InvalidStickInput,
}Expand description
Errors that can occur while parsing a StickInput.
Variants§
InvalidStickInput
One or both raw axis values exceeded the maximum encoded value of 14.
Trait Implementations§
Source§impl Debug for StickInputError
impl Debug for StickInputError
Source§impl Display for StickInputError
impl Display for StickInputError
Source§impl Error for StickInputError
impl Error for StickInputError
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()
Source§impl From<StickInputError> for InputDataError
impl From<StickInputError> for InputDataError
Source§fn from(source: StickInputError) -> Self
fn from(source: StickInputError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StickInputError
impl RefUnwindSafe for StickInputError
impl Send for StickInputError
impl Sync for StickInputError
impl Unpin for StickInputError
impl UnsafeUnpin for StickInputError
impl UnwindSafe for StickInputError
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