pub trait SyscallHandlerFn<T> {
    // Required method
    fn call(self, ctx: &mut SyscallContext<'_, '_>) -> SyscallResult;
}pub trait SyscallHandlerFn<T> {
    // Required method
    fn call(self, ctx: &mut SyscallContext<'_, '_>) -> SyscallResult;
}