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

source ·
pub enum ErrorCode {
Show 37 variants Access, WouldBlock, Already, BadDescriptor, Busy, Deadlock, Quota, Exist, FileTooLarge, IllegalByteSequence, InProgress, Interrupted, Invalid, Io, IsDirectory, Loop, TooManyLinks, MessageSize, NameTooLong, NoDevice, NoEntry, NoLock, InsufficientMemory, InsufficientSpace, NotDirectory, NotEmpty, NotRecoverable, Unsupported, NoTty, NoSuchDevice, Overflow, NotPermitted, Pipe, ReadOnly, InvalidSeek, TextFileBusy, CrossDevice,
}
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

Permission denied, similar to EACCES in POSIX.

§

WouldBlock

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

§

Already

Connection already in progress, similar to EALREADY in POSIX.

§

BadDescriptor

Bad descriptor, similar to EBADF in POSIX.

§

Busy

Device or resource busy, similar to EBUSY in POSIX.

§

Deadlock

Resource deadlock would occur, similar to EDEADLK in POSIX.

§

Quota

Storage quota exceeded, similar to EDQUOT in POSIX.

§

Exist

File exists, similar to EEXIST in POSIX.

§

FileTooLarge

File too large, similar to EFBIG in POSIX.

§

IllegalByteSequence

Illegal byte sequence, similar to EILSEQ in POSIX.

§

InProgress

Operation in progress, similar to EINPROGRESS in POSIX.

§

Interrupted

Interrupted function, similar to EINTR in POSIX.

§

Invalid

Invalid argument, similar to EINVAL in POSIX.

§

Io

I/O error, similar to EIO in POSIX.

§

IsDirectory

Is a directory, similar to EISDIR in POSIX.

§

Loop

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

Too many links, similar to EMLINK in POSIX.

§

MessageSize

Message too large, similar to EMSGSIZE in POSIX.

§

NameTooLong

Filename too long, similar to ENAMETOOLONG in POSIX.

§

NoDevice

No such device, similar to ENODEV in POSIX.

§

NoEntry

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

§

NoLock

No locks available, similar to ENOLCK in POSIX.

§

InsufficientMemory

Not enough space, similar to ENOMEM in POSIX.

§

InsufficientSpace

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

§

NotDirectory

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

§

NotEmpty

Directory not empty, similar to ENOTEMPTY in POSIX.

§

NotRecoverable

State not recoverable, similar to ENOTRECOVERABLE in POSIX.

§

Unsupported

Not supported, similar to ENOTSUP and ENOSYS in POSIX.

§

NoTty

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

§

NoSuchDevice

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

§

Overflow

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

§

NotPermitted

Operation not permitted, similar to EPERM in POSIX.

§

Pipe

Broken pipe, similar to EPIPE in POSIX.

§

ReadOnly

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

§

InvalidSeek

Invalid seek, similar to ESPIPE in POSIX.

§

TextFileBusy

Text file busy, similar to ETXTBSY in POSIX.

§

CrossDevice

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

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 Errno

Available on crate feature preview1 only.
source§

fn from(code: ErrorCode) -> Self

Converts to this type from the input type.
source§

impl From<ErrorCode> for Error

Available on crate feature preview1 only.
source§

fn from(code: ErrorCode) -> Self

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

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 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<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<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> Pointee for T

§

type Pointer = u32

source§

fn debug( pointer: <T as Pointee>::Pointer, f: &mut Formatter<'_> ) -> Result<(), Error>

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

§

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