pub unsafe extern "C" fn object_property_get(
    obj: *mut Object,
    v: *mut Visitor,
    name: *const c_char,
    errp: *mut *mut Error
)
Expand description

object_property_get: @obj: the object @v: the visitor that will receive the property value. This should be an Output visitor and the data will be written with @name as the name. @name: the name of the property @errp: returns an error if this function fails

Reads a property from a object.