gtk4/subclass/
box_.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 [`Box`](crate::Box).
5
6use crate::{subclass::prelude::*, Box};
7
8pub trait BoxImpl: WidgetImpl {}
9
10unsafe impl<T: BoxImpl> IsSubclassable<T> for Box {}