pub trait GObjectExtManualGst: 'static {
    fn try_set_property_from_str(
        &self,
        name: &str,
        value: &str
    ) -> Result<(), BoolError>;
fn set_property_from_str(&self, name: &str, value: &str); }

Required methods

Implementors