Re-export interface ImplExt traits from the preludes

This commit is contained in:
Sebastian Dröge 2021-03-14 14:06:30 +02:00
parent 27385104d8
commit 15505cc5b8
2 changed files with 3 additions and 3 deletions

View file

@ -8,5 +8,5 @@ pub mod prelude {
#[doc(hidden)]
pub use gst::subclass::prelude::*;
pub use super::player_video_renderer::PlayerVideoRendererImpl;
pub use super::player_video_renderer::{PlayerVideoRendererImpl, PlayerVideoRendererImplExt};
}

View file

@ -43,7 +43,7 @@ pub mod prelude {
pub use glib::subclass::prelude::*;
pub use super::bin::{BinImpl, BinImplExt};
pub use super::child_proxy::ChildProxyImpl;
pub use super::child_proxy::{ChildProxyImpl, ChildProxyImplExt};
pub use super::clock::{ClockImpl, ClockImplExt};
pub use super::device::{DeviceImpl, DeviceImplExt};
pub use super::device_provider::{DeviceProviderImpl, DeviceProviderImplExt};
@ -54,5 +54,5 @@ pub mod prelude {
pub use super::preset::PresetImpl;
pub use super::system_clock::SystemClockImpl;
pub use super::tag_setter::TagSetterImpl;
pub use super::uri_handler::URIHandlerImpl;
pub use super::uri_handler::{URIHandlerImpl, URIHandlerImplExt};
}