gtk4/auto/
custom_filter.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, Filter};
6
7glib::wrapper! {
8    /// Determines whether to include items with a callback.
9    ///
10    /// # Implements
11    ///
12    /// [`FilterExt`][trait@crate::prelude::FilterExt], [`trait@glib::ObjectExt`]
13    #[doc(alias = "GtkCustomFilter")]
14    pub struct CustomFilter(Object<ffi::GtkCustomFilter, ffi::GtkCustomFilterClass>) @extends Filter;
15
16    match fn {
17        type_ => || ffi::gtk_custom_filter_get_type(),
18    }
19}
20
21impl CustomFilter {}