gstreamer_audio/subclass/audio_base_src.rs
1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use gst_base::{prelude::*, subclass::prelude::*};
4
5use crate::AudioBaseSrc;
6
7pub trait AudioBaseSrcImpl: BaseSrcImpl + ObjectSubclass<Type: IsA<AudioBaseSrc>> {}
8
9unsafe impl<T: AudioBaseSrcImpl> IsSubclassable<T> for AudioBaseSrc {}