Trait sourceview5::prelude::MountExt
source · pub trait MountExt: IsA<Mount> + Sealed + 'static {
Show 26 methods
// Provided methods
fn can_eject(&self) -> bool { ... }
fn can_unmount(&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 default_location(&self) -> File { ... }
fn drive(&self) -> Option<Drive> { ... }
fn icon(&self) -> Icon { ... }
fn name(&self) -> GString { ... }
fn root(&self) -> File { ... }
fn sort_key(&self) -> Option<GString> { ... }
fn symbolic_icon(&self) -> Icon { ... }
fn uuid(&self) -> Option<GString> { ... }
fn volume(&self) -> Option<Volume> { ... }
fn guess_content_type<P>(
&self,
force_rescan: bool,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where P: FnOnce(Result<Vec<GString>, Error>) + 'static { ... }
fn guess_content_type_future(
&self,
force_rescan: bool,
) -> Pin<Box<dyn Future<Output = Result<Vec<GString>, Error>>>> { ... }
fn guess_content_type_sync(
&self,
force_rescan: bool,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<Vec<GString>, Error> { ... }
fn is_shadowed(&self) -> bool { ... }
fn remount<P>(
&self,
flags: MountMountFlags,
mount_operation: Option<&impl IsA<MountOperation>>,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where P: FnOnce(Result<(), Error>) + 'static { ... }
fn remount_future(
&self,
flags: MountMountFlags,
mount_operation: Option<&(impl IsA<MountOperation> + Clone + 'static)>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>>>> { ... }
fn shadow(&self) { ... }
fn unmount_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 unmount_with_operation_future(
&self,
flags: MountUnmountFlags,
mount_operation: Option<&(impl IsA<MountOperation> + Clone + 'static)>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>>>> { ... }
fn unshadow(&self) { ... }
fn connect_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_pre_unmount<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_unmounted<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn can_eject(&self) -> bool
fn can_unmount(&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 default_location(&self) -> File
fn drive(&self) -> Option<Drive>
fn icon(&self) -> Icon
fn name(&self) -> GString
fn root(&self) -> File
fn sort_key(&self) -> Option<GString>
fn symbolic_icon(&self) -> Icon
fn uuid(&self) -> Option<GString>
fn volume(&self) -> Option<Volume>
fn guess_content_type<P>( &self, force_rescan: bool, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn guess_content_type_future( &self, force_rescan: bool, ) -> Pin<Box<dyn Future<Output = Result<Vec<GString>, Error>>>>
fn guess_content_type_sync( &self, force_rescan: bool, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<Vec<GString>, Error>
fn is_shadowed(&self) -> bool
fn remount<P>( &self, flags: MountMountFlags, mount_operation: Option<&impl IsA<MountOperation>>, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn remount_future( &self, flags: MountMountFlags, mount_operation: Option<&(impl IsA<MountOperation> + Clone + 'static)>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>>>>
fn shadow(&self)
fn unmount_with_operation<P>( &self, flags: MountUnmountFlags, mount_operation: Option<&impl IsA<MountOperation>>, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn unmount_with_operation_future( &self, flags: MountUnmountFlags, mount_operation: Option<&(impl IsA<MountOperation> + Clone + 'static)>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>>>>
fn unshadow(&self)
fn connect_changed<F>(&self, f: F) -> SignalHandlerId
fn connect_pre_unmount<F>(&self, f: F) -> SignalHandlerId
fn connect_unmounted<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.