blob: 00585f5541afe2547ce768c68d020bd30ba65c76 [file] [log] [blame] [view]
<!-- Generated with Stardoc: http://skydoc.bazel.build -->
Skylib module containing functions that operate on structs.
<a id="structs.to_dict"></a>
## structs.to_dict
<pre>
load("@bazel_skylib//lib:structs.bzl", "structs")
structs.to_dict(<a href="#structs.to_dict-s">s</a>)
</pre>
Converts a `struct` to a `dict`.
**PARAMETERS**
| Name | Description | Default Value |
| :------------- | :------------- | :------------- |
| <a id="structs.to_dict-s"></a>s | A `struct`. | none |
**RETURNS**
A `dict` whose keys and values are the same as the fields in `s`. The
transformation is only applied to the struct's fields and not to any
nested values.