A tree is an abstraction that we put on top of a certain collection of sequences of 0s and 1s that could be anywhere (in a CPU's registers, in a CPU's cache, in memory, etc.). The traversal of such is a sequence of CPU instructions that encapsulate the logic necessary to traverse the tree.
As for how the circuits understand the line p = p.getLeft();, the compiler has done the job of translating that instruction to the necessary machine instructions that the CPU understands and executes.
Honestly, it's best to think abstractly here. If you want to understand binary tree traversal think at that level of abstractions. If you want to understand how computers work at the level of 0s and 1s, forget about binary trees and study computer architecture instead.
Finally note that 0s and 1s are also just an abstraction over the true mechanism.