logo
pub trait AdwWindowExt: 'static {
    fn content(&self) -> Option<Widget>;
    fn set_content(&self, content: Option<&impl IsA<Widget>>);
    fn connect_content_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

Implementors