pub struct DebugWriterComponent<const BUF_SIZE_BYTES: usize> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<const BUF_SIZE_BYTES: usize> Component for DebugWriterComponent<BUF_SIZE_BYTES>
impl<const BUF_SIZE_BYTES: usize> Component for DebugWriterComponent<BUF_SIZE_BYTES>
Source§type StaticInput = (&'static mut MaybeUninit<UartDevice<'static>>, &'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<UartDevice<'static>>, &'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<const BUF_SIZE_BYTES: usize> Freeze for DebugWriterComponent<BUF_SIZE_BYTES>
impl<const BUF_SIZE_BYTES: usize> !RefUnwindSafe for DebugWriterComponent<BUF_SIZE_BYTES>
impl<const BUF_SIZE_BYTES: usize> !Send for DebugWriterComponent<BUF_SIZE_BYTES>
impl<const BUF_SIZE_BYTES: usize> !Sync for DebugWriterComponent<BUF_SIZE_BYTES>
impl<const BUF_SIZE_BYTES: usize> Unpin for DebugWriterComponent<BUF_SIZE_BYTES>
impl<const BUF_SIZE_BYTES: usize> !UnwindSafe for DebugWriterComponent<BUF_SIZE_BYTES>
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