libshumate/subclass/marker.rs
1// Take a look at the license at the top of the repository in the LICENSE file.
2
3// rustdoc-stripper-ignore-next
4//! Traits intended for subclassing [`Marker`](crate::Marker).
5
6use crate::Marker;
7use glib::subclass::prelude::*;
8use gtk::subclass::prelude::WidgetImpl;
9
10pub trait MarkerImpl: WidgetImpl {}
11
12unsafe impl<T: MarkerImpl> IsSubclassable<T> for Marker {}