pub struct DebugWriterNoMuxComponent<U: Uart<'static> + Transmit<'static> + 'static, const BUF_SIZE_BYTES: usize> { /* private fields */ }
Implementations§
Source§impl<U: Uart<'static> + Transmit<'static> + 'static, const BUF_SIZE_BYTES: usize> DebugWriterNoMuxComponent<U, BUF_SIZE_BYTES>
impl<U: Uart<'static> + Transmit<'static> + 'static, const BUF_SIZE_BYTES: usize> DebugWriterNoMuxComponent<U, BUF_SIZE_BYTES>
pub fn new(uart: &'static U) -> Self
Trait Implementations§
Source§impl<U: Uart<'static> + Transmit<'static> + 'static, const BUF_SIZE_BYTES: usize> Component for DebugWriterNoMuxComponent<U, BUF_SIZE_BYTES>
impl<U: Uart<'static> + Transmit<'static> + 'static, const BUF_SIZE_BYTES: usize> Component for DebugWriterNoMuxComponent<U, BUF_SIZE_BYTES>
Source§type StaticInput = (&'static mut MaybeUninit<RingBuffer<'static, u8>>, &'static mut MaybeUninit<[u8; BUF_SIZE_BYTES]>, &'static mut MaybeUninit<DebugWriter>, &'static mut MaybeUninit<DebugWriterWrapper>)
type StaticInput = (&'static mut MaybeUninit<RingBuffer<'static, u8>>, &'static mut MaybeUninit<[u8; BUF_SIZE_BYTES]>, &'static mut MaybeUninit<DebugWriter>, &'static mut MaybeUninit<DebugWriterWrapper>)
An optional type to specify the chip or board specific static memory
that a component needs to setup the output object(s). This is the memory
that
crate::static_buf!()
would normally setup, but generic
components cannot setup static buffers for types which are
chip-dependent, so those buffers have to be passed in manually, and the
Component::StaticInput
type makes this possible.Source§type Output = ()
type Output = ()
The type (e.g., capsule, peripheral) that this implementation of
Component
produces via Component::finalize()
. This is typically
a static reference (&'static
).Source§fn finalize(self, s: Self::StaticInput) -> Self::Output
fn finalize(self, s: Self::StaticInput) -> Self::Output
Auto Trait Implementations§
impl<U, const BUF_SIZE_BYTES: usize> Freeze for DebugWriterNoMuxComponent<U, BUF_SIZE_BYTES>
impl<U, const BUF_SIZE_BYTES: usize> RefUnwindSafe for DebugWriterNoMuxComponent<U, BUF_SIZE_BYTES>where
U: RefUnwindSafe,
impl<U, const BUF_SIZE_BYTES: usize> Send for DebugWriterNoMuxComponent<U, BUF_SIZE_BYTES>where
U: Sync,
impl<U, const BUF_SIZE_BYTES: usize> Sync for DebugWriterNoMuxComponent<U, BUF_SIZE_BYTES>where
U: Sync,
impl<U, const BUF_SIZE_BYTES: usize> Unpin for DebugWriterNoMuxComponent<U, BUF_SIZE_BYTES>
impl<U, const BUF_SIZE_BYTES: usize> UnwindSafe for DebugWriterNoMuxComponent<U, BUF_SIZE_BYTES>where
U: RefUnwindSafe,
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