libadwaita 0.9.1

Rust bindings for libadwaita
Documentation
1
2
3
4
5
6
7
8
9
use glib::prelude::*;
use glib::subclass::prelude::*;

use crate::EntryRow;
use crate::subclass::prelude::PreferencesRowImpl;

pub trait EntryRowImpl: PreferencesRowImpl + ObjectSubclass<Type: IsA<EntryRow>> {}

unsafe impl<T: EntryRowImpl> IsSubclassable<T> for EntryRow {}