pub trait EncodingProfileExt: IsA<EncodingProfile> + 'static {
Show 16 methods
// Provided methods
fn copy(&self) -> EncodingProfile { ... }
fn allows_dynamic_output(&self) -> bool { ... }
fn description(&self) -> Option<GString> { ... }
fn file_extension(&self) -> Option<GString> { ... }
fn format(&self) -> Caps { ... }
fn input_caps(&self) -> Caps { ... }
fn name(&self) -> Option<GString> { ... }
fn presence(&self) -> u32 { ... }
fn preset(&self) -> Option<GString> { ... }
fn preset_name(&self) -> Option<GString> { ... }
fn is_single_segment(&self) -> bool { ... }
fn type_nick(&self) -> GString { ... }
fn is_enabled(&self) -> bool { ... }
fn is_equal(&self, b: &impl IsA<EncodingProfile>) -> bool { ... }
fn to_str(&self) -> GString { ... }
fn connect_element_properties_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}Provided Methods§
fn copy(&self) -> EncodingProfile
fn allows_dynamic_output(&self) -> bool
fn description(&self) -> Option<GString>
fn file_extension(&self) -> Option<GString>
fn format(&self) -> Caps
fn input_caps(&self) -> Caps
fn name(&self) -> Option<GString>
fn presence(&self) -> u32
fn preset(&self) -> Option<GString>
fn preset_name(&self) -> Option<GString>
fn is_single_segment(&self) -> bool
Available on crate feature
v1_18 only.fn type_nick(&self) -> GString
fn is_enabled(&self) -> bool
fn is_equal(&self, b: &impl IsA<EncodingProfile>) -> bool
fn to_str(&self) -> GString
Available on crate feature
v1_26 only.fn connect_element_properties_notify<F: Fn(&Self) + Send + Sync + 'static>( &self, f: F, ) -> SignalHandlerId
Available on crate feature
v1_20 only.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.