pub trait ListType {
// Required methods
fn format() -> ComboFormat;
fn push_into(self, ptr: *mut obs_property_t, name: ObsString);
fn insert_into(
self,
ptr: *mut obs_property_t,
name: ObsString,
index: usize,
);
}Required Methods§
fn format() -> ComboFormat
fn push_into(self, ptr: *mut obs_property_t, name: ObsString)
fn insert_into(self, ptr: *mut obs_property_t, name: ObsString, index: usize)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.