pub struct PinPortIncompatibleError<P>(/* private fields */);Expand description
The wrapped pin is not compatible with this peripheral instance.
If P is (), it indicates that the caller’s pin was incompatible with the
peripheral, but the method did not take ownership of a pin.
Implementations§
Source§impl<P> PinPortIncompatibleError<P>
impl<P> PinPortIncompatibleError<P>
Trait Implementations§
Auto Trait Implementations§
impl<P> Freeze for PinPortIncompatibleError<P>where
P: Freeze,
impl<P> RefUnwindSafe for PinPortIncompatibleError<P>where
P: RefUnwindSafe,
impl<P> Send for PinPortIncompatibleError<P>where
P: Send,
impl<P> Sync for PinPortIncompatibleError<P>where
P: Sync,
impl<P> Unpin for PinPortIncompatibleError<P>where
P: Unpin,
impl<P> UnsafeUnpin for PinPortIncompatibleError<P>where
P: UnsafeUnpin,
impl<P> UnwindSafe for PinPortIncompatibleError<P>where
P: UnwindSafe,
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