pub struct AnalogComparatorComponent<AC: 'static + AnalogComparator<'static>> { /* private fields */ }
Implementations§
Source§impl<AC: 'static + AnalogComparator<'static>> AnalogComparatorComponent<AC>
impl<AC: 'static + AnalogComparator<'static>> AnalogComparatorComponent<AC>
Trait Implementations§
Source§impl<AC: 'static + AnalogComparator<'static>> Component for AnalogComparatorComponent<AC>
impl<AC: 'static + AnalogComparator<'static>> Component for AnalogComparatorComponent<AC>
Source§type StaticInput = &'static mut MaybeUninit<AnalogComparator<'static, AC>>
type StaticInput = &'static mut MaybeUninit<AnalogComparator<'static, AC>>
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 = &'static AnalogComparator<'static, AC>
type Output = &'static AnalogComparator<'static, AC>
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, static_buffer: Self::StaticInput) -> Self::Output
fn finalize(self, static_buffer: Self::StaticInput) -> Self::Output
Auto Trait Implementations§
impl<AC> Freeze for AnalogComparatorComponent<AC>
impl<AC> !RefUnwindSafe for AnalogComparatorComponent<AC>
impl<AC> !Send for AnalogComparatorComponent<AC>
impl<AC> !Sync for AnalogComparatorComponent<AC>
impl<AC> Unpin for AnalogComparatorComponent<AC>
impl<AC> !UnwindSafe for AnalogComparatorComponent<AC>
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