pub trait ProcessStandardStoragePermissionsPolicy<C: Chip, D: ProcessStandardDebug> {
// Required method
fn get_permissions(
&self,
process: &ProcessStandard<'_, C, D>,
) -> StoragePermissions;
}
Expand description
Generic trait for implementing a policy on how applications should be assigned storage permissions.
Required Methods§
sourcefn get_permissions(
&self,
process: &ProcessStandard<'_, C, D>,
) -> StoragePermissions
fn get_permissions( &self, process: &ProcessStandard<'_, C, D>, ) -> StoragePermissions
Return the storage permissions for the specified process
.