pub trait Service: Sealed {
    const SERVICE_NUM: u8;
    const FUNCTION_ADDRESS: usize;
    unsafe fn call(pukcl_params: &mut PukclParams) { ... }
}

Associated Constants

Provided methods

Implementors