Instead of needing additional `Struct.get`s... ```ts pipe( keypairs, Struct.get("box"), Struct.get("publicKey"), Struct.get("inner"), ) ``` ... could we enable a key path? ```ts pipe( keypairs, Struct.get("box", "publicKey", "inner"), ) ```