1 | // Take a look at the license at the top of the repository in the LICENSE file. |
---|---|
2 | |
3 | use glib::subclass::prelude::*; |
4 | |
5 | use crate::TagSetter; |
6 | |
7 | pub trait TagSetterImpl: super::element::ElementImpl {} |
8 | |
9 | unsafe impl<T: TagSetterImpl> IsImplementable<T> for TagSetter {} |
10 |