gtk4/auto/
constraint_layout_child.rs

1// This file was generated by gir (https://github.com/gtk-rs/gir)
2// from gir-files (https://github.com/gtk-rs/gir-files)
3// DO NOT EDIT
4
5use crate::{ffi, LayoutChild};
6
7glib::wrapper! {
8    /// [`LayoutChild`][crate::LayoutChild] subclass for children in a [`ConstraintLayout`][crate::ConstraintLayout].
9    ///
10    /// # Implements
11    ///
12    /// [`LayoutChildExt`][trait@crate::prelude::LayoutChildExt], [`trait@glib::ObjectExt`]
13    #[doc(alias = "GtkConstraintLayoutChild")]
14    pub struct ConstraintLayoutChild(Object<ffi::GtkConstraintLayoutChild, ffi::GtkConstraintLayoutChildClass>) @extends LayoutChild;
15
16    match fn {
17        type_ => || ffi::gtk_constraint_layout_child_get_type(),
18    }
19}
20
21impl ConstraintLayoutChild {}