pub type DynObjectGetMutFn = for<'a> unsafe fn(value: PtrMut, key: &str) -> Option<PtrMut>;Expand description
Get a mutable reference to a value from an object by key. Returns None if not an object or key not found.
This is used for navigating into existing object entries during deserialization
(e.g., TOML implicit tables like [a] followed by [a.b.c]).
ยงSafety
value must point to an initialized dynamic value that is an object.