gio/auto/
native_volume_monitor.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, VolumeMonitor};
6
7glib::wrapper! {
8    ///
9    ///
10    /// This is an Abstract Base Class, you cannot instantiate it.
11    ///
12    /// # Implements
13    ///
14    /// [`VolumeMonitorExt`][trait@crate::prelude::VolumeMonitorExt], [`trait@glib::ObjectExt`]
15    #[doc(alias = "GNativeVolumeMonitor")]
16    pub struct NativeVolumeMonitor(Object<ffi::GNativeVolumeMonitor, ffi::GNativeVolumeMonitorClass>) @extends VolumeMonitor;
17
18    match fn {
19        type_ => || ffi::g_native_volume_monitor_get_type(),
20    }
21}
22
23impl NativeVolumeMonitor {
24    pub const NONE: Option<&'static NativeVolumeMonitor> = None;
25}