Enum wasmtime_wasi::preview2::table::TableError
source · pub enum TableError {
Full,
NotPresent,
WrongType,
}
Variants§
Trait Implementations§
source§impl Debug for TableError
impl Debug for TableError
source§impl Display for TableError
impl Display for TableError
source§impl Error for TableError
impl Error for TableError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
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
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<TableError> for Errno
impl From<TableError> for Errno
source§fn from(err: TableError) -> Self
fn from(err: TableError) -> Self
Converts to this type from the input type.
source§impl From<TableError> for Error
impl From<TableError> for Error
source§fn from(error: TableError) -> Error
fn from(error: TableError) -> Error
Converts to this type from the input type.
source§impl From<TableError> for Error
impl From<TableError> for Error
source§fn from(err: TableError) -> Self
fn from(err: TableError) -> Self
Converts to this type from the input type.
source§impl From<TableError> for Error
impl From<TableError> for Error
source§fn from(error: TableError) -> Error
fn from(error: TableError) -> Error
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for TableError
impl Send for TableError
impl Sync for TableError
impl Unpin for TableError
impl UnwindSafe for TableError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
source§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
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,
fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where T: AsFilelike,
source§fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
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