pub type DynObjectGetEntryFn = unsafe fn(value: PtrConst, index: usize) -> Option<(&'static str, PtrConst)>;Expand description
Get a key-value pair from an object by index. Returns None if not an object or index out of bounds.
ยงSafety
value must point to an initialized dynamic value.