> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/structs/structs.exec.md).

# Structs.exec()

`exec(`*`limit_count: int = 0, offset_count: int = 0`*`) →` [`APIList`](/glider-ide/api/iterables/apilist.md)`[`[`Struct`](/glider-ide/api/struct.md)`]`

## Query Example

```python
from glider import *


def query():
  contracts = Contracts().with_name("DefaultReserveInterestRateStrategy").exec(1)

  for contract in contracts:
    for struct in contract.structs().exec():
      print(struct.name)

  return contracts
```

## Example Output

<figure><img src="/files/EGGDmQZV8w1nR5G49y0C" alt=""><figcaption></figcaption></figure>
