pub struct AppCheckerSha256Component<S: 'static + Digest<'static, 32>> { /* private fields */ }
Implementations§
Source§impl<S: 'static + Digest<'static, 32>> AppCheckerSha256Component<S>
impl<S: 'static + Digest<'static, 32>> AppCheckerSha256Component<S>
pub fn new(sha: &'static S) -> Self
Trait Implementations§
Source§impl<S: Sha256 + 'static + Digest<'static, 32> + DigestDataVerify<'static, 32>> Component for AppCheckerSha256Component<S>
impl<S: Sha256 + 'static + Digest<'static, 32> + DigestDataVerify<'static, 32>> Component for AppCheckerSha256Component<S>
Source§type StaticInput = (&'static mut MaybeUninit<AppCheckerSha256>, &'static mut MaybeUninit<[u8; 32]>)
type StaticInput = (&'static mut MaybeUninit<AppCheckerSha256>, &'static mut MaybeUninit<[u8; 32]>)
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 AppCheckerSha256
type Output = &'static AppCheckerSha256
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<S> Freeze for AppCheckerSha256Component<S>
impl<S> RefUnwindSafe for AppCheckerSha256Component<S>where
S: RefUnwindSafe,
impl<S> Send for AppCheckerSha256Component<S>where
S: Sync,
impl<S> Sync for AppCheckerSha256Component<S>where
S: Sync,
impl<S> Unpin for AppCheckerSha256Component<S>
impl<S> UnwindSafe for AppCheckerSha256Component<S>where
S: 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