DynObjectGetFn

Type Alias DynObjectGetFn 

Source
pub type DynObjectGetFn = for<'a> unsafe fn(value: PtrConst, key: &str) -> Option<PtrConst>;
Expand description

Get a value from an object by key. Returns None if not an object or key not found.

ยงSafety

value must point to an initialized dynamic value.