GoとRustってCのアドレス演算的なことはできるのですか?

int arr[] = {1, 2, 3};
int *p = arr;
p += 1; // ←これです
printf("%d\n", *p); // 2