pub struct ModeInitError<UART, PINS> {
pub uart: UART,
pub pins: PINS,
pub error: InitErrorKind,
}Fields§
§uart: UART§pins: PINS§error: InitErrorKindImplementations§
Source§impl<UART, PINS> ModeInitError<UART, PINS>
impl<UART, PINS> ModeInitError<UART, PINS>
pub fn into_parts(self) -> (UART, PINS, InitErrorKind)
Trait Implementations§
Auto Trait Implementations§
impl<UART, PINS> Freeze for ModeInitError<UART, PINS>
impl<UART, PINS> RefUnwindSafe for ModeInitError<UART, PINS>where
UART: RefUnwindSafe,
PINS: RefUnwindSafe,
impl<UART, PINS> Send for ModeInitError<UART, PINS>
impl<UART, PINS> Sync for ModeInitError<UART, PINS>
impl<UART, PINS> Unpin for ModeInitError<UART, PINS>
impl<UART, PINS> UnsafeUnpin for ModeInitError<UART, PINS>where
UART: UnsafeUnpin,
PINS: UnsafeUnpin,
impl<UART, PINS> UnwindSafe for ModeInitError<UART, PINS>where
UART: UnwindSafe,
PINS: 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