Enum glib::FileError

source ·
#[non_exhaustive]
pub enum FileError {
Show 25 variants Exist, Isdir, Acces, Nametoolong, Noent, Notdir, Nxio, Nodev, Rofs, Txtbsy, Fault, Loop, Nospc, Nomem, Mfile, Nfile, Badf, Inval, Pipe, Again, Intr, Io, Perm, Nosys, Failed,
}
Expand description

Values corresponding to @errno codes returned from file operations on UNIX. Unlike @errno codes, GFileError values are available on all systems, even Windows. The exact meaning of each code depends on what sort of file operation you were performing; the UNIX documentation gives more details. The following error code descriptions come from the GNU C Library manual, and are under the copyright of that manual.

It’s not very portable to make detailed assumptions about exactly which errors will be returned from a given operation. Some errors don’t occur on some systems, etc., sometimes there are subtle differences in when a system will report a given error, etc.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Exist

Operation not permitted; only the owner of the file (or other resource) or processes with special privileges can perform the operation.

§

Isdir

File is a directory; you cannot open a directory for writing, or create or remove hard links to it.

§

Acces

Permission denied; the file permissions do not allow the attempted operation.

§

Nametoolong

Filename too long.

§

Noent

No such file or directory. This is a “file doesn’t exist” error for ordinary files that are referenced in contexts where they are expected to already exist.

§

Notdir

A file that isn’t a directory was specified when a directory is required.

§

Nxio

No such device or address. The system tried to use the device represented by a file you specified, and it couldn’t find the device. This can mean that the device file was installed incorrectly, or that the physical device is missing or not correctly attached to the computer.

§

Nodev

The underlying file system of the specified file does not support memory mapping.

§

Rofs

The directory containing the new link can’t be modified because it’s on a read-only file system.

§

Txtbsy

Text file busy.

§

Fault

You passed in a pointer to bad memory. (GLib won’t reliably return this, don’t pass in pointers to bad memory.)

§

Loop

Too many levels of symbolic links were encountered in looking up a file name. This often indicates a cycle of symbolic links.

§

Nospc

No space left on device; write operation on a file failed because the disk is full.

§

Nomem

No memory available. The system cannot allocate more virtual memory because its capacity is full.

§

Mfile

The current process has too many files open and can’t open any more. Duplicate descriptors do count toward this limit.

§

Nfile

There are too many distinct file openings in the entire system.

§

Badf

Bad file descriptor; for example, I/O on a descriptor that has been closed or reading from a descriptor open only for writing (or vice versa).

§

Inval

Invalid argument. This is used to indicate various kinds of problems with passing the wrong argument to a library function.

§

Pipe

Broken pipe; there is no process reading from the other end of a pipe. Every library function that returns this error code also generates a ‘SIGPIPE’ signal; this signal terminates the program if not handled or blocked. Thus, your program will never actually see this code unless it has handled or blocked ‘SIGPIPE’.

§

Again

Resource temporarily unavailable; the call might work if you try again later.

§

Intr

Interrupted function call; an asynchronous signal occurred and prevented completion of the call. When this happens, you should try the call again.

§

Io

Input/output error; usually used for physical read or write errors. i.e. the disk or other physical device hardware is returning errors.

§

Perm

Operation not permitted; only the owner of the file (or other resource) or processes with special privileges can perform the operation.

§

Nosys

Function not implemented; this indicates that the system is missing some functionality.

§

Failed

Does not correspond to a UNIX error code; this is the standard “failed for unspecified reason” error code present in all #GError error code enumerations. Returned if no specific code applies.

Trait Implementations§

source§

impl Clone for FileError

source§

fn clone(&self) -> FileError

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for FileError

source§

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

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

impl ErrorDomain for FileError

source§

fn domain() -> Quark

Returns the quark identifying the error domain. Read more
source§

fn code(self) -> i32

Gets the integer representation of the variant.
source§

fn from(code: i32) -> Option<Self>

Tries to convert an integer code to an enum variant. Read more
source§

impl Hash for FileError

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for FileError

source§

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

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

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

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

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

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

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

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

impl PartialEq for FileError

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for FileError

source§

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

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

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for FileError

source§

impl Eq for FileError

source§

impl StructuralPartialEq for FileError

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

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

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

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

§

type Error = Infallible

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

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

Performs the conversion.
source§

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.
source§

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

Performs the conversion.