pub trait Format: Send + Sync {
// Required method
fn set_option(&mut self, key: &str, value: &Variant) -> Result<(), Error>;
}Expand description
Base trait for all media format implementations
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".