You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using StructBuilder to dynamically construct/modify Ion structs. In addition to setting struct fields, I also need to add annotations to the struct.
Currently, I have to .build() the builder and then call .with_annotations([...]) on the result. It would be nice for API symmetry if annotations could be added/removed as part of the builder (like fields) instead of only on the resulting object.
The text was updated successfully, but these errors were encountered:
I'm using
StructBuilder
to dynamically construct/modify Ion structs. In addition to setting struct fields, I also need to add annotations to the struct.Currently, I have to
.build()
the builder and then call.with_annotations([...])
on the result. It would be nice for API symmetry if annotations could be added/removed as part of the builder (like fields) instead of only on the resulting object.The text was updated successfully, but these errors were encountered: