pub trait Service: Sealed {
const SERVICE_NUM: u8;
const FUNCTION_ADDRESS: usize;
// Provided method
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
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.