ListType

Trait ListType 

Source
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§

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.

Implementations on Foreign Types§

Source§

impl ListType for f64

Source§

impl ListType for i64

Implementors§