pub struct StoragePermissionsTbfHeaderComponent<C: Chip, D: ProcessStandardDebug> { /* private fields */ }
Implementations§
Source§impl<C: Chip, D: ProcessStandardDebug> StoragePermissionsTbfHeaderComponent<C, D>
impl<C: Chip, D: ProcessStandardDebug> StoragePermissionsTbfHeaderComponent<C, D>
Trait Implementations§
Source§impl<C: Chip + 'static, D: ProcessStandardDebug + 'static> Component for StoragePermissionsTbfHeaderComponent<C, D>
impl<C: Chip + 'static, D: ProcessStandardDebug + 'static> Component for StoragePermissionsTbfHeaderComponent<C, D>
Source§type StaticInput = &'static mut MaybeUninit<TbfHeaderStoragePermissions<C, D, AppStoreCapability>>
type StaticInput = &'static mut MaybeUninit<TbfHeaderStoragePermissions<C, D, AppStoreCapability>>
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 TbfHeaderStoragePermissions<C, D, AppStoreCapability>
type Output = &'static TbfHeaderStoragePermissions<C, D, AppStoreCapability>
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<C, D> Freeze for StoragePermissionsTbfHeaderComponent<C, D>
impl<C, D> RefUnwindSafe for StoragePermissionsTbfHeaderComponent<C, D>where
C: RefUnwindSafe,
D: RefUnwindSafe,
impl<C, D> Send for StoragePermissionsTbfHeaderComponent<C, D>
impl<C, D> Sync for StoragePermissionsTbfHeaderComponent<C, D>
impl<C, D> Unpin for StoragePermissionsTbfHeaderComponent<C, D>
impl<C, D> UnwindSafe for StoragePermissionsTbfHeaderComponent<C, D>where
C: UnwindSafe,
D: 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