Function panda_sys::object_property_set[][src]

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

object_property_set: @obj: the object @v: the visitor that will be used to write the property value. This should be an Input visitor and the data will be first read with @name as the name and then written as the property value. @name: the name of the property @errp: returns an error if this function fails

Writes a property to a object.