pub enum PinNumberError {
Zero,
}Expand description
Errors returned while constructing pin numbers.
Variants§
Zero
Pin number zero is not accepted.
Trait Implementations§
Source§impl Clone for PinNumberError
impl Clone for PinNumberError
Source§fn clone(&self) -> PinNumberError
fn clone(&self) -> PinNumberError
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 moreSource§impl Debug for PinNumberError
impl Debug for PinNumberError
Source§impl Display for PinNumberError
impl Display for PinNumberError
Source§impl Error for PinNumberError
impl Error for PinNumberError
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 PinNumberError
impl PartialEq for PinNumberError
Source§fn eq(&self, other: &PinNumberError) -> bool
fn eq(&self, other: &PinNumberError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PinNumberError
impl Eq for PinNumberError
impl StructuralPartialEq for PinNumberError
Auto Trait Implementations§
impl Freeze for PinNumberError
impl RefUnwindSafe for PinNumberError
impl Send for PinNumberError
impl Sync for PinNumberError
impl Unpin for PinNumberError
impl UnsafeUnpin for PinNumberError
impl UnwindSafe for PinNumberError
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