A BoundedDynamicFieldID contains the material needed to load an a dynamic field from
the store, along with a parent version bound. The returned field will be the highest
version of the field object that has a version less than or equal to the bound.
Rust version of the Move sui::dynamic_object_field::Wrapper type
A DynamicField is a Field<K, V>
object, that is, the value that would be stored in the field object.
A chainable API for getting dynamic fields.
A DynamicFieldObject is a wrapper around an Object that contains a Field<K, V>
object.
Rust version of the Move sui::dynamic_field::Field type
A UnboundedDynamicFieldID contains the material needed to load an a dynamic field from
the store.