pub trait Service: Sealed {
const SERVICE_NUM: u8;
const FUNCTION_ADDRESS: usize;
unsafe fn call(pukcl_params: &mut PukclParams) { ... }
}
Required Associated Constants
const SERVICE_NUM: u8
const FUNCTION_ADDRESS: usize
Provided Methods
sourceunsafe fn call(pukcl_params: &mut PukclParams)
unsafe fn call(pukcl_params: &mut PukclParams)
Call to PUKCC functions
Safety
User must ensure that PukclParams
is correctly initialised
according to the service being called