Enum wasmtime_wasi::bindings::filesystem::types::ErrorCode

source ·
#[repr(u8)]
pub enum ErrorCode {
Show 37 variants Access = 0, WouldBlock = 1, Already = 2, BadDescriptor = 3, Busy = 4, Deadlock = 5, Quota = 6, Exist = 7, FileTooLarge = 8, IllegalByteSequence = 9, InProgress = 10, Interrupted = 11, Invalid = 12, Io = 13, IsDirectory = 14, Loop = 15, TooManyLinks = 16, MessageSize = 17, NameTooLong = 18, NoDevice = 19, NoEntry = 20, NoLock = 21, InsufficientMemory = 22, InsufficientSpace = 23, NotDirectory = 24, NotEmpty = 25, NotRecoverable = 26, Unsupported = 27, NoTty = 28, NoSuchDevice = 29, Overflow = 30, NotPermitted = 31, Pipe = 32, ReadOnly = 33, InvalidSeek = 34, TextFileBusy = 35, CrossDevice = 36,
}
Expand description

Error codes returned by functions, similar to errno in POSIX. Not all of these error codes are returned by the functions provided by this API; some are used in higher-level library layers, and others are provided merely for alignment with POSIX.

Variants§

§

Access = 0

Permission denied, similar to EACCES in POSIX.

§

WouldBlock = 1

Resource unavailable, or operation would block, similar to EAGAIN and EWOULDBLOCK in POSIX.

§

Already = 2

Connection already in progress, similar to EALREADY in POSIX.

§

BadDescriptor = 3

Bad descriptor, similar to EBADF in POSIX.

§

Busy = 4

Device or resource busy, similar to EBUSY in POSIX.

§

Deadlock = 5

Resource deadlock would occur, similar to EDEADLK in POSIX.

§

Quota = 6

Storage quota exceeded, similar to EDQUOT in POSIX.

§

Exist = 7

File exists, similar to EEXIST in POSIX.

§

FileTooLarge = 8

File too large, similar to EFBIG in POSIX.

§

IllegalByteSequence = 9

Illegal byte sequence, similar to EILSEQ in POSIX.

§

InProgress = 10

Operation in progress, similar to EINPROGRESS in POSIX.

§

Interrupted = 11

Interrupted function, similar to EINTR in POSIX.

§

Invalid = 12

Invalid argument, similar to EINVAL in POSIX.

§

Io = 13

I/O error, similar to EIO in POSIX.

§

IsDirectory = 14

Is a directory, similar to EISDIR in POSIX.

§

Loop = 15

Too many levels of symbolic links, similar to ELOOP in POSIX.

Too many links, similar to EMLINK in POSIX.

§

MessageSize = 17

Message too large, similar to EMSGSIZE in POSIX.

§

NameTooLong = 18

Filename too long, similar to ENAMETOOLONG in POSIX.

§

NoDevice = 19

No such device, similar to ENODEV in POSIX.

§

NoEntry = 20

No such file or directory, similar to ENOENT in POSIX.

§

NoLock = 21

No locks available, similar to ENOLCK in POSIX.

§

InsufficientMemory = 22

Not enough space, similar to ENOMEM in POSIX.

§

InsufficientSpace = 23

No space left on device, similar to ENOSPC in POSIX.

§

NotDirectory = 24

Not a directory or a symbolic link to a directory, similar to ENOTDIR in POSIX.

§

NotEmpty = 25

Directory not empty, similar to ENOTEMPTY in POSIX.

§

NotRecoverable = 26

State not recoverable, similar to ENOTRECOVERABLE in POSIX.

§

Unsupported = 27

Not supported, similar to ENOTSUP and ENOSYS in POSIX.

§

NoTty = 28

Inappropriate I/O control operation, similar to ENOTTY in POSIX.

§

NoSuchDevice = 29

No such device or address, similar to ENXIO in POSIX.

§

Overflow = 30

Value too large to be stored in data type, similar to EOVERFLOW in POSIX.

§

NotPermitted = 31

Operation not permitted, similar to EPERM in POSIX.

§

Pipe = 32

Broken pipe, similar to EPIPE in POSIX.

§

ReadOnly = 33

Read-only file system, similar to EROFS in POSIX.

§

InvalidSeek = 34

Invalid seek, similar to ESPIPE in POSIX.

§

TextFileBusy = 35

Text file busy, similar to ETXTBSY in POSIX.

§

CrossDevice = 36

Cross-device link, similar to EXDEV in POSIX.

Implementations§

source§

impl ErrorCode

source

pub fn name(&self) -> &'static str

source

pub fn message(&self) -> &'static str

Trait Implementations§

source§

impl Clone for ErrorCode

source§

fn clone(&self) -> ErrorCode

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 ErrorCode

source§

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

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

impl Display for ErrorCode

source§

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

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

impl Error for ErrorCode

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
source§

impl<'a> From<&'a Error> for ErrorCode

source§

fn from(err: &'a Error) -> ErrorCode

Converts to this type from the input type.
source§

impl From<Error> for ErrorCode

source§

fn from(err: Error) -> ErrorCode

Converts to this type from the input type.
source§

impl From<Error> for ErrorCode

source§

fn from(err: Error) -> ErrorCode

Converts to this type from the input type.
source§

impl From<ErrorCode> for ErrorCode

source§

fn from(other: ErrorCode) -> Self

Converts to this type from the input type.
source§

impl From<TryFromIntError> for ErrorCode

source§

fn from(_err: TryFromIntError) -> ErrorCode

Converts to this type from the input type.
source§

impl PartialEq for ErrorCode

source§

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

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

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 ComponentType for ErrorCode

source§

impl Copy for ErrorCode

source§

impl Eq for ErrorCode

source§

impl Lift for ErrorCode

source§

impl Lower for ErrorCode

source§

impl StructuralPartialEq for ErrorCode

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

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

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

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> GetSetFdFlags for T

source§

fn get_fd_flags(&self) -> Result<FdFlags, Error>
where T: AsFilelike,

Query the “status” flags for the self file descriptor.
source§

fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>
where T: AsFilelike,

Create a new SetFdFlags value for use with set_fd_flags. Read more
source§

fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>
where T: AsFilelike,

Set the “status” flags for the self file descriptor. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoAnyhow for T
where T: Into<Error>,

source§

fn into_anyhow(self) -> Error

Converts self into an anyhow::Error.
source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
source§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

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

source§

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> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

source§

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>,

source§

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

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more