pub trait ObsProp {
// Required method
unsafe fn add_to_props(
self,
p: *mut obs_properties_t,
name: ObsString,
description: ObsString,
);
}Required Methods§
Sourceunsafe fn add_to_props(
self,
p: *mut obs_properties_t,
name: ObsString,
description: ObsString,
)
unsafe fn add_to_props( self, p: *mut obs_properties_t, name: ObsString, description: ObsString, )
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".