Trait sourceview5::prelude::VolumeExt
source · pub trait VolumeExt: IsA<Volume> + Sealed + 'static {
Show 19 methods
// Provided methods
fn can_eject(&self) -> bool { ... }
fn can_mount(&self) -> bool { ... }
fn eject_with_operation<P>(
&self,
flags: MountUnmountFlags,
mount_operation: Option<&impl IsA<MountOperation>>,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where P: FnOnce(Result<(), Error>) + 'static { ... }
fn eject_with_operation_future(
&self,
flags: MountUnmountFlags,
mount_operation: Option<&(impl IsA<MountOperation> + Clone + 'static)>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>>>> { ... }
fn enumerate_identifiers(&self) -> Vec<GString> { ... }
fn activation_root(&self) -> Option<File> { ... }
fn drive(&self) -> Option<Drive> { ... }
fn icon(&self) -> Icon { ... }
fn identifier(&self, kind: &str) -> Option<GString> { ... }
fn get_mount(&self) -> Option<Mount> { ... }
fn name(&self) -> GString { ... }
fn sort_key(&self) -> Option<GString> { ... }
fn symbolic_icon(&self) -> Icon { ... }
fn uuid(&self) -> Option<GString> { ... }
fn mount<P>(
&self,
flags: MountMountFlags,
mount_operation: Option<&impl IsA<MountOperation>>,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where P: FnOnce(Result<(), Error>) + 'static { ... }
fn mount_future(
&self,
flags: MountMountFlags,
mount_operation: Option<&(impl IsA<MountOperation> + Clone + 'static)>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>>>> { ... }
fn should_automount(&self) -> bool { ... }
fn connect_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_removed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn can_eject(&self) -> bool
fn can_mount(&self) -> bool
fn eject_with_operation<P>( &self, flags: MountUnmountFlags, mount_operation: Option<&impl IsA<MountOperation>>, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn eject_with_operation_future( &self, flags: MountUnmountFlags, mount_operation: Option<&(impl IsA<MountOperation> + Clone + 'static)>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>>>>
fn enumerate_identifiers(&self) -> Vec<GString>
fn activation_root(&self) -> Option<File>
fn drive(&self) -> Option<Drive>
fn icon(&self) -> Icon
fn identifier(&self, kind: &str) -> Option<GString>
fn get_mount(&self) -> Option<Mount>
fn name(&self) -> GString
fn sort_key(&self) -> Option<GString>
fn symbolic_icon(&self) -> Icon
fn uuid(&self) -> Option<GString>
fn mount<P>( &self, flags: MountMountFlags, mount_operation: Option<&impl IsA<MountOperation>>, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn mount_future( &self, flags: MountMountFlags, mount_operation: Option<&(impl IsA<MountOperation> + Clone + 'static)>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>>>>
fn should_automount(&self) -> bool
fn connect_changed<F>(&self, f: F) -> SignalHandlerId
fn connect_removed<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.