pub enum ResetError {
InvalidId,
Unsupported,
Busy,
Controller,
}Variants§
Trait Implementations§
Source§impl Clone for ResetError
impl Clone for ResetError
Source§fn clone(&self) -> ResetError
fn clone(&self) -> ResetError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ResetError
Source§impl Debug for ResetError
impl Debug for ResetError
Source§impl Display for ResetError
impl Display for ResetError
impl Eq for ResetError
Source§impl Error for ResetError
impl Error for ResetError
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 PartialEq for ResetError
impl PartialEq for ResetError
Source§fn eq(&self, other: &ResetError) -> bool
fn eq(&self, other: &ResetError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResetError
Auto Trait Implementations§
impl Freeze for ResetError
impl RefUnwindSafe for ResetError
impl Send for ResetError
impl Sync for ResetError
impl Unpin for ResetError
impl UnsafeUnpin for ResetError
impl UnwindSafe for ResetError
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