starlark 0.13.0

An implementation of the Starlark language in Rust.
Documentation
# @generated
# To regenerate, run:
# ```
# STARLARK_RUST_REGENERATE_GOLDEN_TESTS=1 cargo test -p starlark --lib
# ```

# Obj

These are where the module docs go

## Obj.\_\_exported\_\_

```python
def Obj.__exported__() -> None
```

Needs to be escaped when rendered in markdown.

---

## Obj.attr1

```python
Obj.attr1: str
```

Docs for attr1

---

## Obj.attr2

```python
Obj.attr2: str
```

---

## Obj.func1

```python
def Obj.func1(foo: str) -> str
```

Docs for func1

#### Parameters

* `foo`: Docs for foo


#### Returns

The string 'func1'

---

## Obj.func2

```python
def Obj.func2() -> str
```