Trait sourceview5::prelude::VolumeMonitorExt
source · pub trait VolumeMonitorExt: IsA<VolumeMonitor> + Sealed + 'static {
Show 17 methods
// Provided methods
fn connected_drives(&self) -> Vec<Drive> { ... }
fn mount_for_uuid(&self, uuid: &str) -> Option<Mount> { ... }
fn mounts(&self) -> Vec<Mount> { ... }
fn volume_for_uuid(&self, uuid: &str) -> Option<Volume> { ... }
fn volumes(&self) -> Vec<Volume> { ... }
fn connect_drive_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Drive) + 'static { ... }
fn connect_drive_connected<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Drive) + 'static { ... }
fn connect_drive_disconnected<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Drive) + 'static { ... }
fn connect_drive_eject_button<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Drive) + 'static { ... }
fn connect_drive_stop_button<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Drive) + 'static { ... }
fn connect_mount_added<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Mount) + 'static { ... }
fn connect_mount_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Mount) + 'static { ... }
fn connect_mount_pre_unmount<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Mount) + 'static { ... }
fn connect_mount_removed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Mount) + 'static { ... }
fn connect_volume_added<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Volume) + 'static { ... }
fn connect_volume_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Volume) + 'static { ... }
fn connect_volume_removed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Volume) + 'static { ... }
}
Provided Methods§
fn connected_drives(&self) -> Vec<Drive>
fn mount_for_uuid(&self, uuid: &str) -> Option<Mount>
fn mounts(&self) -> Vec<Mount>
fn volume_for_uuid(&self, uuid: &str) -> Option<Volume>
fn volumes(&self) -> Vec<Volume>
fn connect_drive_changed<F>(&self, f: F) -> SignalHandlerId
fn connect_drive_connected<F>(&self, f: F) -> SignalHandlerId
fn connect_drive_disconnected<F>(&self, f: F) -> SignalHandlerId
fn connect_mount_added<F>(&self, f: F) -> SignalHandlerId
fn connect_mount_changed<F>(&self, f: F) -> SignalHandlerId
fn connect_mount_pre_unmount<F>(&self, f: F) -> SignalHandlerId
fn connect_mount_removed<F>(&self, f: F) -> SignalHandlerId
fn connect_volume_added<F>(&self, f: F) -> SignalHandlerId
fn connect_volume_changed<F>(&self, f: F) -> SignalHandlerId
fn connect_volume_removed<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.