MountEntry

Struct MountEntry 

Source
pub struct MountEntry { /* private fields */ }
Available on crate feature v2_84 only.
Expand description

Defines a Unix mount entry (e.g. /media/cdrom). This corresponds roughly to a mtab entry.

GLib type: Boxed type with copy-on-clone semantics.

Implementations§

Source§

impl MountEntry

Source

pub fn as_ptr(&self) -> *mut GUnixMountEntry

Return the inner pointer to the underlying C value.

Source

pub unsafe fn from_glib_ptr_borrow(ptr: &*mut GUnixMountEntry) -> &Self

Borrows the underlying C value.

Source

pub unsafe fn from_glib_ptr_borrow_mut( ptr: &mut *mut GUnixMountEntry, ) -> &mut Self

Borrows the underlying C value mutably.

Source§

impl MountEntry

Source

pub fn device_path(&self) -> PathBuf

Gets the device path for a Unix mount.

§Returns

a string containing the device path

Source

pub fn fs_type(&self) -> GString

Gets the filesystem type for the Unix mount.

§Returns

a string containing the file system type

Source

pub fn mount_path(&self) -> PathBuf

Gets the mount path for a Unix mount.

§Returns

the mount path for @self

Source

pub fn options(&self) -> Option<GString>

Gets a comma separated list of mount options for the Unix mount.

For example: rw,relatime,seclabel,data=ordered.

This is similar to MountPoint::options(), but it takes a MountEntry as an argument.

§Returns

a string containing the options, or NULL if not available.

Source

pub fn root_path(&self) -> Option<GString>

Gets the root of the mount within the filesystem. This is useful e.g. for mounts created by bind operation, or btrfs subvolumes.

For example, the root path is equal to / for a mount created by mount /dev/sda1 /mnt/foo and /bar for mount --bind /mnt/foo/bar /mnt/bar.

§Returns

a string containing the root, or NULL if not supported

Source

pub fn guess_can_eject(&self) -> bool

Guesses whether a Unix mount entry can be ejected.

§Returns

true if @self is deemed to be ejectable; false otherwise

Source

pub fn guess_icon(&self) -> Icon

Guesses the icon of a Unix mount entry.

§Returns

a [gio::Icon][crate::gio::Icon]

Source

pub fn guess_name(&self) -> GString

Guesses the name of a Unix mount entry.

The result is a translated string.

§Returns

a newly allocated translated string

Source

pub fn guess_should_display(&self) -> bool

Guesses whether a Unix mount entry should be displayed in the UI.

§Returns

true if @self is deemed to be displayable; false otherwise

Source

pub fn guess_symbolic_icon(&self) -> Icon

Guesses the symbolic icon of a Unix mount entry.

§Returns

a [gio::Icon][crate::gio::Icon]

Source

pub fn is_readonly(&self) -> bool

Checks if a Unix mount is mounted read only.

§Returns

true if @self is read only; false otherwise

Source

pub fn is_system_internal(&self) -> bool

Checks if a Unix mount is a system mount.

This is the Boolean OR of [is_system_fs_type()][crate::is_system_fs_type()], [is_system_device_path()][crate::is_system_device_path()] and [is_mount_path_system_internal()][crate::is_mount_path_system_internal()] on @self’s properties.

The definition of what a ‘system’ mount entry is may change over time as new file system types and device paths are ignored.

§Returns

true if the Unix mount is for a system path; false otherwise

Source

pub fn for_mount_path(mount_path: impl AsRef<Path>) -> (Option<MountEntry>, u64)

Gets a MountEntry for a given mount path.

If @time_read is set, it will be filled with a Unix timestamp for checking if the mounts have changed since with [mount_entries_changed_since()][crate::mount_entries_changed_since()].

If more mounts have the same mount path, the last matching mount is returned.

This will return NULL if there is no mount point at @mount_path.

§mount_path

path for a possible Unix mount

§Returns

a MountEntry

§time_read

return location for a timestamp

Source

pub fn for_file_path(file_path: impl AsRef<Path>) -> (Option<MountEntry>, u64)

Gets a MountEntry for a given file path.

If @time_read is set, it will be filled with a Unix timestamp for checking if the mounts have changed since with [mount_entries_changed_since()][crate::mount_entries_changed_since()].

If more mounts have the same mount path, the last matching mount is returned.

This will return NULL if looking up the mount entry fails, if @file_path doesn’t exist or there is an I/O error.

§file_path

file path on some Unix mount

§Returns

a MountEntry

§time_read

return location for a timestamp

Source§

impl MountEntry

Source

pub fn mounts() -> (Vec<MountEntry>, u64)

Source

pub fn mounts_from_file(table_path: impl AsRef<Path>) -> (Vec<MountEntry>, u64)

Source

pub fn is_changed_since(time: u64) -> bool

Trait Implementations§

Source§

impl Clone for MountEntry

Source§

fn clone(&self) -> Self

Copies the boxed type with the type-specific copy function.

1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for MountEntry

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<MountEntry> for Value

Source§

fn from(o: MountEntry) -> Self

Converts to this type from the input type.
Source§

impl HasParamSpec for MountEntry

Source§

type ParamSpec = ParamSpecBoxed

Source§

type SetValue = MountEntry

Preferred value to be used as setter for the associated ParamSpec.
Source§

type BuilderFn = fn(&str) -> ParamSpecBoxedBuilder<'_, MountEntry>

Source§

fn param_spec_builder() -> Self::BuilderFn

Source§

impl Ord for MountEntry

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for MountEntry

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for MountEntry

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl StaticType for MountEntry

Source§

fn static_type() -> Type

Returns the type identifier of Self.
Source§

impl Eq for MountEntry

Source§

impl Send for MountEntry

Source§

impl Sync for MountEntry

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoClosureReturnValue for T
where T: Into<Value>,

Source§

impl<T> Property for T
where T: HasParamSpec,

Source§

type Value = T

Source§

impl<T> PropertyGet for T
where T: HasParamSpec,

Source§

type Value = T

Source§

fn get<R, F>(&self, f: F) -> R
where F: Fn(&<T as PropertyGet>::Value) -> R,

Source§

impl<T> StaticTypeExt for T
where T: StaticType,

Source§

fn ensure_type()

Ensures that the type has been registered with the type system.
§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToSendValue for T
where T: Send + ToValue + ?Sized,

Source§

fn to_send_value(&self) -> SendValue

Returns a SendValue clone of self.
Source§

impl<T> TransparentType for T

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T> TryFromClosureReturnValue for T
where T: for<'a> FromValue<'a> + StaticType + 'static,

§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<'a, T, C, E> FromValueOptional<'a> for T
where T: FromValue<'a, Checker = C>, C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError<E>>, E: Error + Send + 'static,