gtk4/subclass/
orientable.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 implementing the [`Orientable`](crate::Orientable)
5//! interface.
6
7use crate::{subclass::prelude::*, Orientable};
8
9pub trait OrientableImpl: WidgetImpl {}
10
11unsafe impl<T: OrientableImpl> IsImplementable<T> for Orientable {}