pub trait MediaType: Debug + 'static {
type ConfigRange: ConfigRange<Config = Self::Config>;
type Config: Debug + Clone + Send + Sync + 'static;
type FrameData: Debug + Clone + Send + Sync + 'static;
}pub trait MediaType: Debug + 'static {
type ConfigRange: ConfigRange<Config = Self::Config>;
type Config: Debug + Clone + Send + Sync + 'static;
type FrameData: Debug + Clone + Send + Sync + 'static;
}