ARP begins inside an Ethernet frame, and the frame says this local question is broadcast.
Start with the local envelope
ARP starts as an Ethernet frame on one local link. The envelope says who should hear the question before the ARP fields begin.
ethertype=0x0806
Broadcast the question
The destination MAC is 0xffffffffffff, the broadcast address. The client MAC is 0x001122334455.
dst=0xffffffffffff,src=0x001122334455
Name the payload
The EtherType field is 0x0806, so the payload is ARP rather than an IP packet.
EtherType=0x0806
Summary
The request is local broadcast first, then ARP payload. The strip checks the destination MAC, source MAC, and EtherType from the exact bytes.
ARP EtherType=0x0806